aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2016-02-06 16:27:04 +0100
committerMarc Alexander <admin@m-a-styles.de>2016-02-06 16:27:04 +0100
commit01b29b8464b7a699b1e5564ee77d9a27b113d276 (patch)
treedcc203305c39ca3cf08b0f1601f1119b6a8f2b6f /phpBB
parentdf505d772d2130427c36084f70aff7da8ca7342c (diff)
parentda08a6e3cbda3cb51052bd9c8b7ac697fba2305d (diff)
downloadforums-01b29b8464b7a699b1e5564ee77d9a27b113d276.tar
forums-01b29b8464b7a699b1e5564ee77d9a27b113d276.tar.gz
forums-01b29b8464b7a699b1e5564ee77d9a27b113d276.tar.bz2
forums-01b29b8464b7a699b1e5564ee77d9a27b113d276.tar.xz
forums-01b29b8464b7a699b1e5564ee77d9a27b113d276.zip
Merge pull request #4170 from Elsensee/ticket/14461
[ticket/14461] Correctly count up $processed_records
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/phpbb/db/migration/data/v320/text_reparser.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/db/migration/data/v320/text_reparser.php b/phpBB/phpbb/db/migration/data/v320/text_reparser.php
index 8673a3488a..ea614feb40 100644
--- a/phpBB/phpbb/db/migration/data/v320/text_reparser.php
+++ b/phpBB/phpbb/db/migration/data/v320/text_reparser.php
@@ -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)