diff options
author | Tristan Darricau <github@nicofuma.fr> | 2014-07-28 14:45:39 +0200 |
---|---|---|
committer | Tristan Darricau <github@nicofuma.fr> | 2014-07-28 14:45:39 +0200 |
commit | f86bfeb3a1c3c87d4aaf906e5316775a2690df9d (patch) | |
tree | dddb093bee5c753cd422ecd6432520f1587a20ae /phpBB/cron.php | |
parent | 3df41920f7fa0291aa2b093ce3c6d036e103f9db (diff) | |
download | forums-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.php | 3 |
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(); |