From: Sam Reed Date: Sat, 5 Nov 2011 14:22:58 +0000 (+0000) Subject: Followup r100126, per brion remove htmlspecialchars() call X-Git-Tag: 1.31.0-rc.0~26690 X-Git-Url: http://git.cyclocoop.org/%22.%24h.%22?a=commitdiff_plain;h=701491d4c426e115e0429111edbd4e290c84ba20;p=lhc%2Fweb%2Fwiklou.git Followup r100126, per brion remove htmlspecialchars() call Swap back a code line to use $text Swap some space indents to tabs --- diff --git a/includes/installer/WebInstaller.php b/includes/installer/WebInstaller.php index 5d910387d1..7427906e04 100644 --- a/includes/installer/WebInstaller.php +++ b/includes/installer/WebInstaller.php @@ -641,13 +641,12 @@ class WebInstaller extends Installer { array_shift( $args ); $args = array_map( 'htmlspecialchars', $args ); $text = wfMsgReal( $msg, $args, false, false, false ); - $html = htmlspecialchars( $text ); - $html = $this->parse( $html, true ); + $html = $this->parse( $text, true ); return "
\n" . - "" . wfMsgHtml( 'config-help' ) . "\n" . - "" . $html . "\n" . - "
\n"; + "" . wfMsgHtml( 'config-help' ) . "\n" . + "" . $html . "\n" . + "\n"; } /**