1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-04-20 07:42:09 +02:00

[ticket/14461] Correctly count up $processed_records

PHPBB3-14461
This commit is contained in:
Oliver Schramm 2016-02-06 14:43:14 +01:00
parent df505d772d
commit da08a6e3cb

View File

@ -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)