From 03534e7e5b12e1f3e091c1ebf3b7bb0686df99e4 Mon Sep 17 00:00:00 2001 From: Rob Church Date: Sun, 17 Dec 2006 02:36:44 +0000 Subject: [PATCH] * (bug 6690) wfMsgNoTrans() transforms messages --- RELEASE-NOTES | 1 + includes/GlobalFunctions.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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 ); } /** -- 2.20.1