diff options
Diffstat (limited to 'phpBB/includes')
-rw-r--r-- | phpBB/includes/diff/engine.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/phpBB/includes/diff/engine.php b/phpBB/includes/diff/engine.php index 19e0bcf09e..0d73db02da 100644 --- a/phpBB/includes/diff/engine.php +++ b/phpBB/includes/diff/engine.php @@ -287,6 +287,7 @@ class diff_engine reset($matches); while ($y = current($matches)) { + next($matches); if (empty($this->in_seq[$y])) { $k = $this->_lcs_pos($y); @@ -298,6 +299,7 @@ class diff_engine // no reset() here while ($y = current($matches)) { + next($matches); if ($y > $this->seq[$k - 1]) { // Optimization: this is a common case: next match is just replacing previous match. |