Index: trunk/extensions/FlaggedRevs/FlaggedRevs.php |
— | — | @@ -213,7 +213,7 @@ |
214 | 214 | 'maxRevertedEdits' => 5, # Max edits the user could have had rolled back? |
215 | 215 | ); |
216 | 216 | |
217 | | -# Define when users get to have their own edits auto-reviewed |
| 217 | +# Define when users get to have their own edits auto-reviewed. |
218 | 218 | # This can be used for newer, semi-trusted users to improve workflow. |
219 | 219 | $wgFlaggedRevsAutoconfirm = false; |
220 | 220 | /* (example usage) |
Index: trunk/extensions/FlaggedRevs/language/FlaggedRevs.i18n.php |
— | — | @@ -184,7 +184,7 @@ |
185 | 185 | 'revreview-visibility3' => '\'\'\'This page does not have a [[{{MediaWiki:Validationpage}}|published version]]; page stability settings can be [{{fullurl:{{#Special:Stabilization}}|page={{FULLPAGENAMEE}}}} configured].\'\'\'', |
186 | 186 | 'revreview-revnotfound' => 'The old revision of the page you asked for could not be found. |
187 | 187 | Please check the URL you used to access this page.', |
188 | | - 'right-autoreview' => 'Automatically mark revisions as checked', |
| 188 | + 'right-autoreview' => 'Automatically mark revisions as "checked"', |
189 | 189 | 'right-movestable' => 'Move published pages', |
190 | 190 | 'right-review' => 'Mark revisions as being "checked"', |
191 | 191 | 'right-stablesettings' => 'Configure how the published version is selected and displayed', |
Index: trunk/extensions/FlaggedRevs/FlaggedRevs.hooks.php |
— | — | @@ -1170,7 +1170,7 @@ |
1171 | 1171 | global $wgFlaggedRevsAutoconfirm, $wgMemc; |
1172 | 1172 | # Make sure bots always have autoreview |
1173 | 1173 | if ( $user->isAllowed( 'bot' ) ) { |
1174 | | - $promote[] = 'autoreview'; |
| 1174 | + $promote[] = 'autoreview'; // add the group |
1175 | 1175 | return true; |
1176 | 1176 | } |
1177 | 1177 | # Check if $wgFlaggedRevsAutoconfirm is actually enabled |
— | — | @@ -1273,8 +1273,7 @@ |
1274 | 1274 | return true; |
1275 | 1275 | } |
1276 | 1276 | } |
1277 | | - # Add the right |
1278 | | - $promote[] = 'autoreview'; |
| 1277 | + $promote[] = 'autoreview'; // add the group |
1279 | 1278 | return true; |
1280 | 1279 | } |
1281 | 1280 | |