1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-02-24 20:13:22 +01:00

[feature/system-cron] Added missing include to prune all forums task.

PHPBB3-9596
This commit is contained in:
Oleg Pudeyev 2010-05-09 15:02:39 -04:00
parent 5c03040ddd
commit be087826b0

View File

@ -37,7 +37,13 @@ class cron_task_core_prune_all_forums extends cron_task_base
*/
public function run()
{
global $db;
global $phpbb_root_path, $phpEx, $db;
if (!function_exists('auto_prune'))
{
include($phpbb_root_path . 'includes/functions_admin.' . $phpEx);
}
$sql = 'SELECT forum_id, prune_next, enable_prune, prune_days, prune_viewed, forum_flags, prune_freq
FROM ' . FORUMS_TABLE . "
WHERE enable_prune = 1 and prune_next < " . time();