diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 01604178b89..52049dc8865 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -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) doesn't work in site notice +* (bug 6690) wfMsgNoTrans() transforms messages == Languages updated == diff --git a/includes/GlobalFunctions.php b/includes/GlobalFunctions.php index 60648070b76..7f5f3a82bd3 100644 --- a/includes/GlobalFunctions.php +++ b/includes/GlobalFunctions.php @@ -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 ); } /**