Skip to content
Snippets Groups Projects
Commit 6cc5fa3a authored by FramaJosephK's avatar FramaJosephK
Browse files

purge auto limitée à 20 pour 1 créé

parent e0ff6ec0
No related branches found
No related tags found
No related merge requests found
...@@ -252,7 +252,7 @@ class Utils ...@@ -252,7 +252,7 @@ class Utils
public static function cleaning_polls($connect, $log_txt) { public static function cleaning_polls($connect, $log_txt) {
$connect->StartTrans(); $connect->StartTrans();
$req = 'SELECT * FROM sondage WHERE date_fin < NOW() LIMIT 50'; $req = 'SELECT * FROM sondage WHERE date_fin < NOW() LIMIT 20';
$sql = $connect->Prepare($req); $sql = $connect->Prepare($req);
$cleaning = $connect->Execute($sql); $cleaning = $connect->Execute($sql);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment