Index: trunk/extensions/FlaggedRevs/FlaggedRevs.php |
— | — | @@ -111,6 +111,7 @@ |
112 | 112 | $wgGroupPermissions['reviewer']['review'] = true; |
113 | 113 | |
114 | 114 | # Define when users get automatically promoted to editors |
| 115 | +# Set to false to disable this |
115 | 116 | $wgFlaggedRevsAutopromote = array('days' => 60, 'edits' => 500, 'email' => true); |
116 | 117 | |
117 | 118 | # What icons to display |
— | — | @@ -668,6 +669,8 @@ |
669 | 670 | public static function autoPromoteUser( &$article, &$user, &$text, &$summary, &$isminor, &$iswatch, &$section ) { |
670 | 671 | global $wgUser, $wgFlaggedRevsAutopromote; |
671 | 672 | |
| 673 | + if( !$wgFlaggedRevsAutopromote ) return; |
| 674 | + |
672 | 675 | $groups = $user->getGroups(); |
673 | 676 | $now = time(); |
674 | 677 | $usercreation = wfTimestamp(TS_UNIX,$user->mRegistration); |