mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-30 21:40:43 +02:00
[ticket/14257] Fix if condition
PHPBB3-14257
This commit is contained in:
@@ -99,7 +99,7 @@ class reparser extends \phpbb\cron\task\base
|
||||
$this->load_resume_data();
|
||||
}
|
||||
|
||||
if (empty($this->resume_data[$this->reparser_name]['range-max']) || $this->resume_data[$this->reparser_name]['range-max'] === $this->resume_data[$this->reparser_name]['range-min'])
|
||||
if (empty($this->resume_data[$this->reparser_name]['range-max']) || $this->resume_data[$this->reparser_name]['range-max'] >= $this->resume_data[$this->reparser_name]['range-min'])
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
Reference in New Issue
Block a user