From eede2807ed085981afb6bb6579d6d622b03d3863 Mon Sep 17 00:00:00 2001 From: Tim Starling Date: Tue, 7 Dec 2010 00:50:36 +0000 Subject: [PATCH] Fix incorrect use of wfMsgReal() from r77929, causes several warnings. --- 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 77c92926fe..9d223eb483 100644 --- a/includes/installer/WebInstaller.php +++ b/includes/installer/WebInstaller.php @@ -637,7 +637,7 @@ class WebInstaller extends CoreInstaller { return "
\n" . - "" . wfMsgReal( 'config-help' ) . "\n" . + "" . wfMsgHtml( 'config-help' ) . "\n" . "" . $html . "\n" . "
\n"; } -- 2.20.1