From: Timo Tijhof Date: Thu, 31 Jan 2013 01:19:25 +0000 (-0800) Subject: Installer: Fix double escaping of config-download-localsettings. X-Git-Tag: 1.31.0-rc.0~20852^2 X-Git-Url: https://git.cyclocoop.org/%7B%24admin_url%7Dmembres/modifier.php?a=commitdiff_plain;h=6e2c1c5abe1bee3d30d2399bbad497eb6ef60c60;p=lhc%2Fweb%2Fwiklou.git Installer: Fix double escaping of config-download-localsettings. The link was outputted as: "Download <code>LocalSettings.php</code>" rendered as: "Download LocalSettings.php" screenshot: http://cl.ly/image/1y2O3y2S2B19 Change-Id: I55a677b2a0f83dc6627d712584b8faa00e413b8b Follows-up: Iaa2c89d6 Bug: 44526 --- diff --git a/includes/installer/WebInstaller.php b/includes/installer/WebInstaller.php index b27f773cd0..8cee4b22f4 100644 --- a/includes/installer/WebInstaller.php +++ b/includes/installer/WebInstaller.php @@ -1079,7 +1079,7 @@ class WebInstaller extends Installer { ) ); $anchor = Html::rawElement( 'a', array( 'href' => $this->getURL( array( 'localsettings' => 1 ) ) ), - $img . ' ' . wfMessage( 'config-download-localsettings' )->escaped() ); + $img . ' ' . wfMessage( 'config-download-localsettings' )->parse() ); return Html::rawElement( 'div', array( 'class' => 'config-download-link' ), $anchor ); }