From 8266bb1b1d7338e240f871469237ee2180bcc896 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Sun, 17 Aug 2008 00:20:47 +0000 Subject: [PATCH] move "continue" statement. Broken position broke mImages and thus flaggedrevs. --- includes/parser/Parser.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/parser/Parser.php b/includes/parser/Parser.php index 7de7291358..20b22e161d 100644 --- a/includes/parser/Parser.php +++ b/includes/parser/Parser.php @@ -1725,10 +1725,10 @@ class Parser $s .= $prefix . $this->armorLinks( $this->makeImage( $nt, $text, $holders ) ) . $trail; wfProfileOut( __METHOD__."-image" ); - continue; } $this->mOutput->addImage( $nt->getDBkey() ); wfProfileOut( __METHOD__."-image" ); + continue; } -- 2.20.1