mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-13 06:48:52 +00:00
[ticket/14257] Fix if condition
PHPBB3-14257
This commit is contained in:
parent
c7ecb1310f
commit
c7ebbcf9f2
1 changed files with 1 additions and 1 deletions
|
@ -99,7 +99,7 @@ class reparser extends \phpbb\cron\task\base
|
||||||
$this->load_resume_data();
|
$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;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue