Merge pull request #3061 from Elsensee/ticket/13210

[ticket/13210] Use the correct config value

* Elsensee/ticket/13210:
  [ticket/13210] Use the correct config value
This commit is contained in:
Andreas Fischer 2014-10-25 19:48:33 +02:00
commit a43879fe91

View file

@ -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'];
}
}