mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-11 05:48:51 +00:00
Merge pull request #4170 from Elsensee/ticket/14461
[ticket/14461] Correctly count up $processed_records
This commit is contained in:
commit
01b29b8464
1 changed files with 1 additions and 1 deletions
|
@ -81,7 +81,7 @@ class text_reparser extends \phpbb\db\migration\container_aware_migration
|
|||
$end = max(1, $resume_data['current']);
|
||||
$reparser->reparse_range($start, $end);
|
||||
|
||||
$processed_records = $end - $start + 1;
|
||||
$processed_records += $end - $start + 1;
|
||||
$resume_data['current'] = $start - 1;
|
||||
|
||||
if ($start === 1)
|
||||
|
|
Loading…
Add table
Reference in a new issue