* (bug 6690) wfMsgNoTrans() transforms messages

This commit is contained in:
Rob Church 2006-12-17 02:36:44 +00:00
parent 5f5abd454b
commit 03534e7e5b
2 changed files with 2 additions and 1 deletions

View 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 ==

View 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 );
}
/**