Skip to content

Commit

Permalink
do not select cron.d-file-regeneration task in cron_task as it is not…
Browse files Browse the repository at this point in the history
… being handled there

Signed-off-by: Michael Kaufmann (d00p) <d00p@froxlor.org>
  • Loading branch information
d00p committed Oct 4, 2015
1 parent be5a13f commit d226af5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/jobs/cron_tasks.php
Expand Up @@ -32,7 +32,7 @@
fwrite($debugHandler, ' cron_tasks: Searching for tasks to do' . "\n");
$cronlog->logAction(CRON_ACTION, LOG_INFO, "Searching for tasks to do");
$result_tasks_stmt = Database::query("
SELECT `id`, `type`, `data` FROM `" . TABLE_PANEL_TASKS . "` ORDER BY `id` ASC
SELECT `id`, `type`, `data` FROM `" . TABLE_PANEL_TASKS . "` WHERE `type` <> '99' ORDER BY `id` ASC
");
$num_results = Database::num_rows();
$resultIDs = array();
Expand Down

0 comments on commit d226af5

Please sign in to comment.