diff options
author | Oliver Schramm <oliver.schramm97@gmail.com> | 2017-09-25 17:46:00 +0200 |
---|---|---|
committer | Oliver Schramm <oliver.schramm97@gmail.com> | 2017-09-25 17:46:00 +0200 |
commit | 4069cdd51874e9b67a83a9bf9f643554394f19d3 (patch) | |
tree | 1bd181c52d6c489f3a6d6cc25e2e49aa096967f4 /phpBB/phpbb/cron/task | |
parent | d095e620c1b36d68206139c082881b32a5f6a6e6 (diff) | |
download | forums-4069cdd51874e9b67a83a9bf9f643554394f19d3.tar forums-4069cdd51874e9b67a83a9bf9f643554394f19d3.tar.gz forums-4069cdd51874e9b67a83a9bf9f643554394f19d3.tar.bz2 forums-4069cdd51874e9b67a83a9bf9f643554394f19d3.tar.xz forums-4069cdd51874e9b67a83a9bf9f643554394f19d3.zip |
[ticket/15379] Fix the assignments in reparser cron job
PHPBB3-15379
Diffstat (limited to 'phpBB/phpbb/cron/task')
-rw-r--r-- | phpBB/phpbb/cron/task/text_reparser/reparser.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/phpbb/cron/task/text_reparser/reparser.php b/phpBB/phpbb/cron/task/text_reparser/reparser.php index 69392f5ac9..fa3bc67325 100644 --- a/phpBB/phpbb/cron/task/text_reparser/reparser.php +++ b/phpBB/phpbb/cron/task/text_reparser/reparser.php @@ -85,7 +85,7 @@ class reparser extends \phpbb\cron\task\base 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) { - $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']) |