From cde3bdd6fe6bc5190537eb273cecfe7dbfb2c4b7 Mon Sep 17 00:00:00 2001 From: Tim Starling Date: Fri, 30 Nov 2007 18:37:47 +0000 Subject: [PATCH] Bug 12150: missing increment --- includes/Parser.php | 1 + 1 file changed, 1 insertion(+) diff --git a/includes/Parser.php b/includes/Parser.php index 3d81b4f666..17495682cb 100644 --- a/includes/Parser.php +++ b/includes/Parser.php @@ -593,6 +593,7 @@ class Parser function insertStripItem( $text ) { static $n = 0; $rnd = "{$this->mUniqPrefix}-item-$n-{$this->mMarkerSuffix}"; + ++$n; $this->mStripState->general->setPair( $rnd, $text ); return $rnd; } -- 2.20.1