(bug 41242) Parse the unacceptable new account name/move messages

Caused by Ie78fa258

Also fix blacklist validation message and add a missing whitespace

Change-Id: I8be6bded76a048cba1d8770f795ef240b7b02951
This commit is contained in:
Krenair 2012-10-20 15:46:01 +01:00
parent a72fa12bb1
commit 12184972ae

View file

@ -60,7 +60,7 @@ class TitleBlacklistHooks {
$err = wfMessage( $blacklisted->getErrorMessage( 'move' ), $err = wfMessage( $blacklisted->getErrorMessage( 'move' ),
$blacklisted->getRaw(), $blacklisted->getRaw(),
$old->getFullText(), $old->getFullText(),
$nt->getFullText() )->escaped(); $nt->getFullText() )->parse();
return false; return false;
} }
return true; return true;
@ -80,7 +80,7 @@ class TitleBlacklistHooks {
'new-account', $override ); 'new-account', $override );
if ( $blacklisted instanceof TitleBlacklistEntry ) { if ( $blacklisted instanceof TitleBlacklistEntry ) {
$message = $blacklisted->getErrorMessage( 'new-account' ); $message = $blacklisted->getErrorMessage( 'new-account' );
$err = wfMessage( $message, $blacklisted->getRaw(), $userName )->escaped(); $err = wfMessage( $message, $blacklisted->getRaw(), $userName )->parse();
return false; return false;
} }
return true; return true;
@ -109,7 +109,7 @@ class TitleBlacklistHooks {
* *
* @param $editor EditPage * @param $editor EditPage
*/ */
public static function validateBlacklist( $editor, $text, $section, $error ) { public static function validateBlacklist( $editor, $text, $section, &$error ) {
global $wgUser; global $wgUser;
$title = $editor->mTitle; $title = $editor->mTitle;