mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/TitleBlacklist
synced 2024-11-15 10:17:49 +00:00
Switch parameters $2 and $3 for 'titleblacklist-forbidden-move' to fit the message ""$2" cannot be moved to "$3", because the title "$3" has been banned from creation."
This commit is contained in:
parent
04521fa29f
commit
0b5e17ad2a
|
@ -46,8 +46,8 @@ class TitleBlacklistHooks {
|
|||
$message = 'titleblacklist-forbidden-move';
|
||||
$err = wfMsgWikiHtml( $message,
|
||||
htmlspecialchars( $blacklisted->getRaw() ),
|
||||
htmlspecialchars( $nt->getFullText() ),
|
||||
htmlspecialchars( $old->getFullText() ) );
|
||||
htmlspecialchars( $old->getFullText() ),
|
||||
htmlspecialchars( $nt->getFullText() ) );
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
|
|
Loading…
Reference in a new issue