Index: trunk/extensions/FlaggedRevs/FlaggedRevs.php |
— | — | @@ -85,8 +85,6 @@ |
86 | 86 | |
87 | 87 | # Allowed namespaces of reviewable pages |
88 | 88 | $wgFlaggedRevsNamespaces = array( NS_MAIN, NS_FILE, NS_TEMPLATE ); |
89 | | -# Patrollable namespaces (overridden by reviewable namespaces) |
90 | | -$wgFlaggedRevsPatrolNamespaces = array(); |
91 | 89 | |
92 | 90 | # Pages exempt from reviewing |
93 | 91 | $wgFlaggedRevsWhitelist = array(); |
— | — | @@ -292,6 +290,9 @@ |
293 | 291 | # End of configuration variables. |
294 | 292 | # ######## |
295 | 293 | |
| 294 | +# Patrollable namespaces (overridden by reviewable namespaces) |
| 295 | +$wgFlaggedRevsPatrolNamespaces = array(); |
| 296 | + |
296 | 297 | # Bots are granted autoreview via hooks, mark in rights |
297 | 298 | # array so that it shows up in sp:ListGroupRights... |
298 | 299 | $wgGroupPermissions['bot']['autoreview'] = true; |
Index: trunk/extensions/FlaggedRevs/language/FlaggedRevs.i18n.php |
— | — | @@ -98,7 +98,7 @@ |
99 | 99 | 'revreview-draft-rev' => 'Draft revision', |
100 | 100 | 'revreview-edit' => 'Edit', |
101 | 101 | 'revreview-editnotice' => '\'\'\'Your changes will be [[{{MediaWiki:Validationpage}}|published]] once an authorised user [[{{MediaWiki:Validationpage}}|reviews]] them.\'\'\'', |
102 | | - 'revreview-check-flag' => 'Mark pending edits reviewed', |
| 102 | + 'revreview-check-flag' => 'Publish currently pending edits', |
103 | 103 | 'revreview-edited' => '\'\'\'Changes will be [[{{MediaWiki:Validationpage}}|published]] once an authorised user [[{{MediaWiki:Validationpage}}|reviews]] them.\'\'\' |
104 | 104 | The \'\'draft\'\', shown below, contains [{{fullurl:{{FULLPAGENAMEE}}|oldid=$1&diff=cur&diffonly=0}} $2 pending {{PLURAL:$2|change|changes}}].', |
105 | 105 | 'revreview-edited-section' => 'Return to page section named "[[#$1|$2]]".', |
Index: trunk/extensions/FlaggedRevs/FlaggedRevs.class.php |
— | — | @@ -1354,7 +1354,7 @@ |
1355 | 1355 | } |
1356 | 1356 | |
1357 | 1357 | /** |
1358 | | - * Get the list of patrolable namespaces |
| 1358 | + * Get the list of patrollable namespaces |
1359 | 1359 | * @return array |
1360 | 1360 | */ |
1361 | 1361 | public static function getPatrolNamespaces() { |