From 0ae4b82c302f4c78740533eb47c869db89a659ee Mon Sep 17 00:00:00 2001 From: Tristan Darricau Date: Fri, 23 May 2014 23:02:31 +0200 Subject: [PATCH] [ticket/12585] Use a 5 minutes interval instead of 10 minutes PHPBB3-12585 --- phpBB/includes/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index 84a630103b..e50c03bbf5 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -5126,7 +5126,7 @@ function page_footer($run_cron = true, $display_template = true, $exit_handler = } else { - $cache->put('cron.lock_check', true, 60 * 10); + $cache->put('cron.lock_check', true, 300); } }