diff options
author | Andreas Fischer <bantu@phpbb.com> | 2014-10-25 19:50:26 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2014-10-25 19:50:26 +0200 |
commit | d2e31984075009f45d8822ef4ca2ec59422fba65 (patch) | |
tree | 99bc39adea24eecb78259c86284ddb4ff68b20e5 /phpBB/phpbb/cron/task | |
parent | 103c929ff0daf69d61d9c5cad1d1981e4e9f6c4e (diff) | |
parent | a43879fe9176a9ed1912a8d087b11db0e39aee83 (diff) | |
download | forums-d2e31984075009f45d8822ef4ca2ec59422fba65.tar forums-d2e31984075009f45d8822ef4ca2ec59422fba65.tar.gz forums-d2e31984075009f45d8822ef4ca2ec59422fba65.tar.bz2 forums-d2e31984075009f45d8822ef4ca2ec59422fba65.tar.xz forums-d2e31984075009f45d8822ef4ca2ec59422fba65.zip |
Merge branch 'prep-release-3.1.0' into develop-ascraeus
* prep-release-3.1.0:
[ticket/13210] Use the correct config value
Diffstat (limited to 'phpBB/phpbb/cron/task')
-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']; } } |