diff options
author | Andreas Fischer <bantu@phpbb.com> | 2014-10-25 19:48:33 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2014-10-25 19:48:33 +0200 |
commit | a43879fe9176a9ed1912a8d087b11db0e39aee83 (patch) | |
tree | 99bc39adea24eecb78259c86284ddb4ff68b20e5 /phpBB/phpbb | |
parent | 6217a519202b7394cbad9982282ab7208f1f5ed4 (diff) | |
parent | a9a67b08a5d3da65d83d70fc4759124991a0bb3a (diff) | |
download | forums-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.php | 2 |
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']; } } |