From: Roan Kattouw Date: Sun, 14 Feb 2010 13:37:14 +0000 (+0000) Subject: Whitespace fixes for r62402 X-Git-Tag: 1.31.0-rc.0~37772 X-Git-Url: http://git.cyclocoop.org/%28?a=commitdiff_plain;h=cf2112e4ca4d2aefafdebd5941f3b9163db87bbd;p=lhc%2Fweb%2Fwiklou.git Whitespace fixes for r62402 --- diff --git a/includes/api/ApiLogin.php b/includes/api/ApiLogin.php index 720fcb8a76..fcf9463155 100644 --- a/includes/api/ApiLogin.php +++ b/includes/api/ApiLogin.php @@ -170,15 +170,15 @@ class ApiLogin extends ApiBase { public function getPossibleErrors() { return array_merge( parent::getPossibleErrors(), array ( - array( 'code' => 'NoName', 'info' => 'You didn\'t set the lgname parameter' ), - array( 'code' => 'Illegal', 'info' => ' You provided an illegal username' ), - array( 'code' => 'NotExists', 'info' => ' The username you provided doesn\'t exist' ), - array( 'code' => 'EmptyPass', 'info' => ' You didn\'t set the lgpassword parameter or you left it empty' ), - array( 'code' => 'WrongPass', 'info' => ' The password you provided is incorrect' ), - array( 'code' => 'WrongPluginPass', 'info' => 'Same as `WrongPass", returned when an authentication plugin rather than MediaWiki itself rejected the password' ), - array( 'code' => 'CreateBlocked', 'info' => 'The wiki tried to automatically create a new account for you, but your IP address has been blocked from account creation' ), - array( 'code' => 'Throttled', 'info' => 'You\'ve logged in too many times in a short time' ), - array( 'code' => 'Blocked', 'info' => 'User is blocked' ), + array( 'code' => 'NoName', 'info' => 'You didn\'t set the lgname parameter' ), + array( 'code' => 'Illegal', 'info' => ' You provided an illegal username' ), + array( 'code' => 'NotExists', 'info' => ' The username you provided doesn\'t exist' ), + array( 'code' => 'EmptyPass', 'info' => ' You didn\'t set the lgpassword parameter or you left it empty' ), + array( 'code' => 'WrongPass', 'info' => ' The password you provided is incorrect' ), + array( 'code' => 'WrongPluginPass', 'info' => 'Same as `WrongPass", returned when an authentication plugin rather than MediaWiki itself rejected the password' ), + array( 'code' => 'CreateBlocked', 'info' => 'The wiki tried to automatically create a new account for you, but your IP address has been blocked from account creation' ), + array( 'code' => 'Throttled', 'info' => 'You\'ve logged in too many times in a short time' ), + array( 'code' => 'Blocked', 'info' => 'User is blocked' ), ) ); ; }