* (bug 6690) wfMsgNoTrans() transforms messages
authorRob Church <robchurch@users.mediawiki.org>
Sun, 17 Dec 2006 02:36:44 +0000 (02:36 +0000)
committerRob Church <robchurch@users.mediawiki.org>
Sun, 17 Dec 2006 02:36:44 +0000 (02:36 +0000)
RELEASE-NOTES
includes/GlobalFunctions.php

index 0160417..52049dc 100644 (file)
@@ -332,6 +332,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
 * Minor restructuring of Special:Preferences; "watch pages I edit" and "watch
   pages I create" options now accessible under "Watchlist" options
 * (bug 8153) <nowiki> doesn't work in site notice
+* (bug 6690) wfMsgNoTrans() transforms messages
 
 == Languages updated ==
 
index 6064807..7f5f3a8 100644 (file)
@@ -292,7 +292,7 @@ function wfMsg( $key ) {
 function wfMsgNoTrans( $key ) {
        $args = func_get_args();
        array_shift( $args );
-       return wfMsgReal( $key, $args, true, false );
+       return wfMsgReal( $key, $args, true, false, false );
 }
 
 /**