1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 14:00:31 +02:00

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

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