Fix d'une mauvaise insertion dans les tranfers sur la reception d'un sms

This commit is contained in:
Pierre-Lin Bonnemaison 2015-08-18 05:06:57 +02:00
parent f2c6c3c7a7
commit 1fd044082f
1 changed files with 1 additions and 1 deletions

View File

@ -280,7 +280,7 @@
}
//On insert le SMS dans le tableau des sms à envoyer par mail
$db->insertIntoTable('transfers', ['content' => $content]);
$db->insertIntoTable('transfers', ['id_received' => $db->lastId(), 'progress' => false]);
//Chaque commande sera executée.
foreach ($found_commands as $command_name => $command)