Passing the and parameters in reverse order to implode has been deprecated since PHP 7.4
Signed-off-by: Michael Kaufmann <d00p@froxlor.org>
This commit is contained in:
@@ -108,7 +108,7 @@ class TasksCron extends \Froxlor\Cron\FroxlorCron
|
|||||||
$where[] = "`id` = :id_" . (int) $id;
|
$where[] = "`id` = :id_" . (int) $id;
|
||||||
$where_data['id_' . $id] = $id;
|
$where_data['id_' . $id] = $id;
|
||||||
}
|
}
|
||||||
$where = implode($where, ' OR ');
|
$where = implode(' OR ', $where);
|
||||||
$del_stmt = Database::prepare("DELETE FROM `" . TABLE_PANEL_TASKS . "` WHERE " . $where);
|
$del_stmt = Database::prepare("DELETE FROM `" . TABLE_PANEL_TASKS . "` WHERE " . $where);
|
||||||
Database::pexecute($del_stmt, $where_data);
|
Database::pexecute($del_stmt, $where_data);
|
||||||
unset($resultIDs);
|
unset($resultIDs);
|
||||||
|
|||||||
Reference in New Issue
Block a user