aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2014-10-25 19:48:33 +0200
committerAndreas Fischer <bantu@phpbb.com>2014-10-25 19:48:33 +0200
commita43879fe9176a9ed1912a8d087b11db0e39aee83 (patch)
tree99bc39adea24eecb78259c86284ddb4ff68b20e5 /phpBB/phpbb
parent6217a519202b7394cbad9982282ab7208f1f5ed4 (diff)
parenta9a67b08a5d3da65d83d70fc4759124991a0bb3a (diff)
downloadforums-a43879fe9176a9ed1912a8d087b11db0e39aee83.tar
forums-a43879fe9176a9ed1912a8d087b11db0e39aee83.tar.gz
forums-a43879fe9176a9ed1912a8d087b11db0e39aee83.tar.bz2
forums-a43879fe9176a9ed1912a8d087b11db0e39aee83.tar.xz
forums-a43879fe9176a9ed1912a8d087b11db0e39aee83.zip
Merge pull request #3061 from Elsensee/ticket/13210
[ticket/13210] Use the correct config value * Elsensee/ticket/13210: [ticket/13210] Use the correct config value
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r--phpBB/phpbb/cron/task/core/queue.php2
1 files changed, 1 insertions, 1 deletions
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'];
}
}