Extension talk:RestrictiveRights
Add topicAppearance
Latest comment: 13 years ago by Platonides
If you set the following (with the extension enabled):
$wgGroupPermissions['*']['createaccount']= false;
$wgGroupPermissions['user']['createaccount'] = true;
Does that mean that logged-in users won't be able to create accounts either, since they're automatically part of the * group? —Waterfox 18:13, 27 August 2010 (UTC)
- No, permissions are additive (except Manual:$wgRevokePermissions entries). Members of * group are given
createaccount
by default, that's what is revoked by$wgGroupPermissions['*']['createaccount']= false;
. That line doesn't prevent users to getcreateaccount
from the$wgGroupPermissions['user']['createaccount'] = true;
line. Platonides 23:18, 17 November 2011 (UTC)