diff options
author | Marc Alexander <admin@m-a-styles.de> | 2017-09-28 21:33:19 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2017-09-28 21:33:19 +0200 |
commit | fc3d3a83db3357f3275c72ff7b3607666c6307a3 (patch) | |
tree | 8557fe846233998c52cbdab2434e74d02b31b6fb /phpBB/phpbb/cron/task | |
parent | e71cb17b64a00a82c46b79f714beefe52ad0445d (diff) | |
parent | e41819e37a8b25121e20ecde6435deeb58155688 (diff) | |
download | forums-fc3d3a83db3357f3275c72ff7b3607666c6307a3.tar forums-fc3d3a83db3357f3275c72ff7b3607666c6307a3.tar.gz forums-fc3d3a83db3357f3275c72ff7b3607666c6307a3.tar.bz2 forums-fc3d3a83db3357f3275c72ff7b3607666c6307a3.tar.xz forums-fc3d3a83db3357f3275c72ff7b3607666c6307a3.zip |
Merge pull request #4974 from Elsensee/ticket/15379
[ticket/15379] Fix assignments in reparser cron job
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']) |