https://bugzilla.wikimedia.org/show_bug.cgi?id=20937
Alexandre Emsenhuber [IAlex] <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #2 from Alexandre Emsenhuber [IAlex] <[email protected]> 2009-10-23 15:08:40 UTC --- You can use http://www.mediawiki.org/wiki/Extension:LockDown to restrict access to Special:Listusers. For this you'll need to install and then select which groups can access Special:ListUsers, let's say "sysop": $wgSpecialPageLockdown['Listusers'] = array( 'sysop' ); You can allow multiple groups to access Special:Listusers, for this you can use: $wgSpecialPageLockdown['Listusers'] = array( 'sysop', 'some-other-group' ); and any member of 'sysop' and/or 'some-other-group' will be able to access that page. You may need to create a new group for those you want to be able access Special:Listusers. -- 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
