Fix fatal error caused by missing comma
authorRoan Kattouw <catrope@users.mediawiki.org>
Wed, 27 Aug 2008 16:40:29 +0000 (16:40 +0000)
committerRoan Kattouw <catrope@users.mediawiki.org>
Wed, 27 Aug 2008 16:40:29 +0000 (16:40 +0000)
includes/api/ApiBase.php

index 445451f..f926a2d 100644 (file)
@@ -633,7 +633,7 @@ abstract class ApiBase {
                'ipb_blocked_as_range' => array('code' => 'blockedasrange', 'info' => "IP address ``\$1'' was blocked as part of range ``\$2''. You can't unblock the IP invidually, but you can unblock the range as a whole."),
                'ipb_cant_unblock' => array('code' => 'cantunblock', 'info' => "The block you specified was not found. It may have been unblocked already"),
                'mailnologin' => array('code' => 'cantsend', 'info' => "You're not logged in or you don't have a confirmed e-mail address, so you can't send e-mail"),
-               'usermaildisabled' => array('code' => 'usermaildisabled' 'info' => "User email has been disabled"),
+               'usermaildisabled' => array('code' => 'usermaildisabled', 'info' => "User email has been disabled"),
                'blockedemailuser' => array('code' => 'blockedfrommail', 'info' => "You have been blocked from sending e-mail"),
                'notarget' => array('code' => 'notarget', 'info' => "You have not specified a valid target for this action"),
                'noemail' => array('code' => 'noemail', 'info' => "The user has not specified a valid e-mail address, or has chosen not to receive e-mail from other users"),