mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
[ticket/15379] Fix the assignments in reparser cron job
PHPBB3-15379
This commit is contained in:
parent
d095e620c1
commit
4069cdd518
1 changed files with 2 additions and 2 deletions
|
@ -85,7 +85,7 @@ class reparser extends \phpbb\cron\task\base
|
||||||
|
|
||||||
if ($this->resume_data === null)
|
if ($this->resume_data === null)
|
||||||
{
|
{
|
||||||
$this->reparser_manager->get_resume_data($this->reparser_name);
|
$this->resume_data = $this->reparser_manager->get_resume_data($this->reparser_name);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -96,7 +96,7 @@ class reparser extends \phpbb\cron\task\base
|
||||||
{
|
{
|
||||||
if ($this->resume_data === null)
|
if ($this->resume_data === null)
|
||||||
{
|
{
|
||||||
$this->reparser_manager->get_resume_data($this->reparser_name);
|
$this->resume_data = $this->reparser_manager->get_resume_data($this->reparser_name);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!isset($this->resume_data['range-max']) || $this->resume_data['range-max'] >= $this->resume_data['range-min'])
|
if (!isset($this->resume_data['range-max']) || $this->resume_data['range-max'] >= $this->resume_data['range-min'])
|
||||||
|
|
Loading…
Add table
Reference in a new issue