* (bug 6690) wfMsgNoTrans() transforms messages
This commit is contained in:
parent
5f5abd454b
commit
03534e7e5b
2 changed files with 2 additions and 1 deletions
|
|
@ -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 ==
|
||||
|
||||
|
|
|
|||
|
|
@ -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 );
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in a new issue