https://bugzilla.wikimedia.org/show_bug.cgi?id=35794
--- Comment #1 from Tim Weyer <[email protected]> 2012-04-13 14:04:13 UTC --- Supplement: I think the right way would be removing editor group and replacing it by reviewer group (or vice versa), removing 'validate' permission from reviewer (or just don't add it to editor) and set $wgFlaggedRevTags['accuracy']['levels'] = 1; I've written a script to replace a given usergroup by another one. It can be found at https://www.mediawiki.org/wiki/User:SVG/Maintenance_scripts/removeRedundantUserGroup.php Here's my suggestion for the new configuration of flaggedrevs.php: Remove: $wgGroupPermissions['coder']['validate'] = true; Add: unset( $wgGroupPermissions['editor'] ); Add: $wgGroupPermissions['reviewer']['validate'] = false; OR unset( $wgGroupPermissions['reviewer']['validate'] ); Add: $wgAddGroups['sysop'] = array_diff( $wgAddGroups['sysop'], array( 'editor' ) ); $wgRemoveGroups['sysop'] = array_diff( $wgRemoveGroups['sysop'], array( 'editor' ) ); Add: $wgAddGroups['sysop'][] = 'reviewer'; $wgRemoveGroups['sysop'][] = 'reviewer'; Add: unset( $wgGroupPermissions['autoreview'] ); // is an unused group and can't be granted Add: $wgFlaggedRevTags['accuracy']['levels'] = 1; -- Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug. You are on the CC list for the bug. _______________________________________________ Wikibugs-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/wikibugs-l
