Add bot to createAndPromote.php groups
authorHazard-SJ <hazard_sj@yahoo.com>
Wed, 29 May 2013 04:45:44 +0000 (23:45 -0500)
committerHazard-SJ <hazard_sj@yahoo.com>
Thu, 30 May 2013 23:03:04 +0000 (18:03 -0500)
- Added 'bot', a default usergroup, to $permitRoles
- Changed 'administrator rights' to just 'rights',  since the script isn't just for administrator rights

Bug: 45160
Change-Id: I61348e2d45b90b65a117efcce65d7c581105e612

maintenance/createAndPromote.php

index 03e6904..aa25ee6 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * Creates an account and grant it administrator rights.
+ * Creates an account and grants it rights.
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
 require_once __DIR__ . '/Maintenance.php';
 
 /**
- * Maintenance script to create an account and grant it administrator rights.
+ * Maintenance script to create an account and grant it rights.
  *
  * @ingroup Maintenance
  */
 class CreateAndPromote extends Maintenance {
 
-       static $permitRoles = array( 'sysop', 'bureaucrat' );
+       static $permitRoles = array( 'sysop', 'bureaucrat', 'bot' );
 
        public function __construct() {
                parent::__construct();