From a9a67b08a5d3da65d83d70fc4759124991a0bb3a Mon Sep 17 00:00:00 2001 From: Oliver Schramm Date: Sat, 25 Oct 2014 14:28:56 +0200 Subject: [PATCH] [ticket/13210] Use the correct config value PHPBB3-13210 --- phpBB/phpbb/cron/task/core/queue.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/phpbb/cron/task/core/queue.php b/phpBB/phpbb/cron/task/core/queue.php index 796a96d7f5..a9345a44df 100644 --- a/phpBB/phpbb/cron/task/core/queue.php +++ b/phpBB/phpbb/cron/task/core/queue.php @@ -73,6 +73,6 @@ class queue extends \phpbb\cron\task\base */ public function should_run() { - return $this->config['last_queue_run'] < time() - $this->config['queue_interval_config']; + return $this->config['last_queue_run'] < time() - $this->config['queue_interval']; } }