diff options
author | Andreas Fischer <bantu@phpbb.com> | 2014-10-25 19:50:34 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2014-10-25 19:50:34 +0200 |
commit | d3026bd8956a7ecbbd001238d91462924592e96a (patch) | |
tree | df2d02897b69da84bd4581fdd4e0c6d35e1975ac | |
parent | f6d8183f4724808e5bc9ef1f545ddf79358adcbe (diff) | |
parent | d2e31984075009f45d8822ef4ca2ec59422fba65 (diff) | |
download | forums-d3026bd8956a7ecbbd001238d91462924592e96a.tar forums-d3026bd8956a7ecbbd001238d91462924592e96a.tar.gz forums-d3026bd8956a7ecbbd001238d91462924592e96a.tar.bz2 forums-d3026bd8956a7ecbbd001238d91462924592e96a.tar.xz forums-d3026bd8956a7ecbbd001238d91462924592e96a.zip |
Merge branch 'develop-ascraeus' into develop
* develop-ascraeus:
[ticket/13210] Use the correct config value
-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']; } } |