diff options
author | Oliver Schramm <oliver.schramm97@gmail.com> | 2014-10-25 14:28:56 +0200 |
---|---|---|
committer | Oliver Schramm <oliver.schramm97@gmail.com> | 2014-10-25 14:28:56 +0200 |
commit | a9a67b08a5d3da65d83d70fc4759124991a0bb3a (patch) | |
tree | 55ade57468cf924c8265ab7d786672a584fe4dfd /phpBB/phpbb/cron | |
parent | 08f365236acb48f9017b6e978a9b9c50ab5ed960 (diff) | |
download | forums-a9a67b08a5d3da65d83d70fc4759124991a0bb3a.tar forums-a9a67b08a5d3da65d83d70fc4759124991a0bb3a.tar.gz forums-a9a67b08a5d3da65d83d70fc4759124991a0bb3a.tar.bz2 forums-a9a67b08a5d3da65d83d70fc4759124991a0bb3a.tar.xz forums-a9a67b08a5d3da65d83d70fc4759124991a0bb3a.zip |
[ticket/13210] Use the correct config value
PHPBB3-13210
Diffstat (limited to 'phpBB/phpbb/cron')
-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']; } } |