fix filter

This commit is contained in:
SeekDaSky 2018-03-06 14:27:27 +01:00
parent c4c891f33f
commit f0ea6cf494
1 changed files with 2 additions and 2 deletions

View File

@ -66,7 +66,7 @@ class filterController{
// 3. Add in unique set // 3. Add in unique set
foreach($fetched_ids as $prof_id) foreach($fetched_ids as $prof_id)
$matches_uniq[ intval($prof_id) ] = null; $matches_uniq[ intval($prof_id["idProfesseur"]) ] = null;
} }
@ -94,7 +94,7 @@ class filterController{
// 3. Add in unique set // 3. Add in unique set
foreach($fetched_ids as $prof_id) foreach($fetched_ids as $prof_id)
$matches_uniq[ intval($prof_id) ] = null; $matches_uniq[ intval($prof_id["idProfesseur"]) ] = null;
} }