From: Rob Church Date: Sun, 17 Dec 2006 02:36:44 +0000 (+0000) Subject: * (bug 6690) wfMsgNoTrans() transforms messages X-Git-Tag: 1.31.0-rc.0~54870 X-Git-Url: http://git.cyclocoop.org/%22%20.%20generer_url_ecrire%28%22suivi_revisions%22%2C%22id_auteur=%24connecte%22%29%20.%20%22?a=commitdiff_plain;h=03534e7e5b12e1f3e091c1ebf3b7bb0686df99e4;p=lhc%2Fweb%2Fwiklou.git * (bug 6690) wfMsgNoTrans() transforms messages --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 01604178b8..52049dc886 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 60648070b7..7f5f3a82bd 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 ); } /**