1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-21 18:44:37 +02:00

[ticket/13210] Use the correct config value

PHPBB3-13210
This commit is contained in:
Oliver Schramm
2014-10-25 14:28:56 +02:00
parent 08f365236a
commit a9a67b08a5

View File

@ -73,6 +73,6 @@ class queue extends \phpbb\cron\task\base
*/ */
public function should_run() 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'];
} }
} }