From 42628c0dbc9af1ffd026d24a963dabf7a6e711f7 Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Sat, 5 Feb 2011 20:15:49 +0000 Subject: [PATCH] Easier to use addWikiText() in wrapWikiMsg() --- includes/OutputPage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/OutputPage.php b/includes/OutputPage.php index 9cd06ff7bc..946a41ab97 100644 --- a/includes/OutputPage.php +++ b/includes/OutputPage.php @@ -2990,7 +2990,7 @@ class OutputPage { } $s = str_replace( '$' . ( $n + 1 ), wfMsgExt( $name, $options, $args ), $s ); } - $this->addHTML( $this->parse( $s, /*linestart*/true, /*uilang*/true ) ); + $this->addWikiText( $s ); } /** -- 2.20.1