From 701491d4c426e115e0429111edbd4e290c84ba20 Mon Sep 17 00:00:00 2001 From: Sam Reed Date: Sat, 5 Nov 2011 14:22:58 +0000 Subject: [PATCH] Followup r100126, per brion remove htmlspecialchars() call Swap back a code line to use $text Swap some space indents to tabs --- includes/installer/WebInstaller.php | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) 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"; } /** -- 2.20.1