On Mon, Jun 7, 2010 at 12:01 PM, Ross Xu rossxunix@yahoo.ca wrote:
Thanks Platonides. The Lockdown extension seems not applying to the Special:ListUsers page. It works well with its example which is the Special:Export page. That's saying ... $wgSpecialPageLockdown['Export'] = array('user'); works well (the example in the README). $wgSpecialPageLockdown['ListUsers'] = array('user'); doesn't work. Anonymous users can still see the user list.
You need to use $wgSpecialPageLockdown['Listusers'] = array('user'); Special:ListUsers is actually Special:Listusers internally; it's just aliased to appear camelcased.