* Fix Database class problems : double query execution in "deleteContactsIn()" and "getUserFromEmail()"

This commit is contained in:
Damien GUILLEM 2015-04-22 11:58:24 +02:00 committed by dam09fr
parent 38a331a4db
commit af868621a9
1 changed files with 0 additions and 6 deletions

View File

@ -212,9 +212,6 @@
$query .= $generted_in['QUERY'];
$params = $generted_in['PARAMS'];
$req = $this->bdd->prepare($query);
$req->execute($params);
return $this->runQuery($query, $params, self::ROWCOUNT);
}
@ -1053,9 +1050,6 @@
'email' => $email
);
$req = $this->bdd->prepare($query);
$req->execute($params);
return $this->runQuery($query, $params, self::FETCH);
}