aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/cron.php
diff options
context:
space:
mode:
authorTristan Darricau <github@nicofuma.fr>2014-07-28 14:45:39 +0200
committerTristan Darricau <github@nicofuma.fr>2014-07-28 14:45:39 +0200
commitf86bfeb3a1c3c87d4aaf906e5316775a2690df9d (patch)
treedddb093bee5c753cd422ecd6432520f1587a20ae /phpBB/cron.php
parent3df41920f7fa0291aa2b093ce3c6d036e103f9db (diff)
downloadforums-f86bfeb3a1c3c87d4aaf906e5316775a2690df9d.tar
forums-f86bfeb3a1c3c87d4aaf906e5316775a2690df9d.tar.gz
forums-f86bfeb3a1c3c87d4aaf906e5316775a2690df9d.tar.bz2
forums-f86bfeb3a1c3c87d4aaf906e5316775a2690df9d.tar.xz
forums-f86bfeb3a1c3c87d4aaf906e5316775a2690df9d.zip
[ticket/12898] Call garbage_collection() at the end of cron.php
PHPBB3-12898
Diffstat (limited to 'phpBB/cron.php')
-rw-r--r--phpBB/cron.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/cron.php b/phpBB/cron.php
index 8bb49bd5d2..3f022b1db8 100644
--- a/phpBB/cron.php
+++ b/phpBB/cron.php
@@ -62,8 +62,9 @@ if ($cron_lock->acquire())
if ($task->is_ready())
{
$task->run();
- garbage_collection();
}
}
$cron_lock->release();
}
+
+garbage_collection();