Merge branch 'cleaning-polls' into 'master'

Keep polls with bad expiration date in database

related to issue #25

See merge request !29
This commit is contained in:
JosephK 2014-12-03 18:41:37 +01:00
commit c4f011ba97

View File

@ -260,7 +260,7 @@ class Utils
*/
public static function cleaning_polls($connect, $log_txt) {
$connect->StartTrans();
$req = 'SELECT * FROM sondage WHERE date_fin < NOW() LIMIT 20';
$req = 'SELECT * FROM sondage WHERE date_fin < NOW() && date_fin != 0 LIMIT 20';
$sql = $connect->Prepare($req);
$cleaning = $connect->Execute($sql);