aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/cron/task
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2014-10-25 19:50:26 +0200
committerAndreas Fischer <bantu@phpbb.com>2014-10-25 19:50:26 +0200
commitd2e31984075009f45d8822ef4ca2ec59422fba65 (patch)
tree99bc39adea24eecb78259c86284ddb4ff68b20e5 /phpBB/phpbb/cron/task
parent103c929ff0daf69d61d9c5cad1d1981e4e9f6c4e (diff)
parenta43879fe9176a9ed1912a8d087b11db0e39aee83 (diff)
downloadforums-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.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'];
}
}