Fix incorrect use of wfMsgReal() from r77929, causes several warnings.
authorTim Starling <tstarling@users.mediawiki.org>
Tue, 7 Dec 2010 00:50:36 +0000 (00:50 +0000)
committerTim Starling <tstarling@users.mediawiki.org>
Tue, 7 Dec 2010 00:50:36 +0000 (00:50 +0000)
includes/installer/WebInstaller.php

index 77c9292..9d223eb 100644 (file)
@@ -637,7 +637,7 @@ class WebInstaller extends CoreInstaller {
                
                
                return "<div class=\"mw-help-field-container\">\n" .
-                        "<span class=\"mw-help-field-hint\">" . wfMsgReal( 'config-help' ) . "</span>\n" .
+                        "<span class=\"mw-help-field-hint\">" . wfMsgHtml( 'config-help' ) . "</span>\n" .
                         "<span class=\"mw-help-field-data\">" . $html . "</span>\n" .
                       "</div>\n";
        }