From 6e2c1c5abe1bee3d30d2399bbad497eb6ef60c60 Mon Sep 17 00:00:00 2001 From: Timo Tijhof Date: Wed, 30 Jan 2013 17:19:25 -0800 Subject: [PATCH] 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 --- includes/installer/WebInstaller.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ); } -- 2.20.1