Passage de getAll vers getFromTableWhere

This commit is contained in:
Pierre-Lin Bonnemaison 2015-10-12 15:29:57 +02:00
parent 66dfb04f7f
commit a7293d7530
1 changed files with 1 additions and 1 deletions

View File

@ -310,7 +310,7 @@
{
$this->wlog('Password is valid');
//On va passer en revue toutes les commandes, pour voir si on en trouve dans ce message
$commands = $db->getAll('commands');
$commands = $db->getFromTableWhere('commands');
$this->wlog('We found ' . count($commands) . ' commands');
foreach ($commands as $command)