Correction erreur php DataBase@delNumeric sur controleUID
This commit is contained in:
parent
d57804889d
commit
6c3f2cdcc3
|
@ -65,8 +65,13 @@ class controleRepo extends DBAccess{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// on retourne le résultat en supprimant les doublons à indices numériques
|
|
||||||
return DataBase::delNumeric( $getControleInfo->fetch(), true );
|
$ctrlInfo = $getControleInfo->fetch();
|
||||||
|
|
||||||
|
if( !is_bool($ctrlInfo) ) // on retourne le résultat en supprimant les doublons à indices numériques s'il est ok
|
||||||
|
return DataBase::delNumeric( $ctrlInfo, true );
|
||||||
|
else
|
||||||
|
return array();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue