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:
Siebrand Mazeland 2009-01-18 14:42:07 +00:00
parent 04521fa29f
commit 0b5e17ad2a

View file

@ -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;