35,7 → 35,7 |
$this->construireRequeteConditionTableObs($uid).' '. |
'LIMIT 0,50'; |
|
$utilisateurs = $this->executerRequete($requete_utilisateurs); |
$utilisateurs = Cel::db()->executerRequete($requete_utilisateurs); |
|
$liste_utilisateurs = array(); |
if (!$utilisateurs) { |
57,7 → 57,7 |
$condition = ''; |
|
if (isset($params[1]) && $params[1] != null && $params[1] != '*') { |
$condition .= ' WHERE courriel LIKE '.$this->proteger($params[1].'%'); |
$condition .= ' WHERE courriel LIKE '.Cel::db()->proteger($params[1].'%'); |
} |
|
return $condition; |
68,7 → 68,7 |
$condition = ''; |
|
if (isset($params[1]) && $params[1] != null && $params[1] != '*') { |
$condition .= ' WHERE courriel_utilisateur LIKE '.$this->proteger($params[1].'%'); |
$condition .= ' WHERE courriel_utilisateur LIKE '.Cel::db()->proteger($params[1].'%'); |
} |
|
return $condition; |