List others groups in Protect Page
Hi there,
In the protection page, I can set for edition all users, only "olders" users and non-registered, or only admin. I want to allow others groups to edit the page when I protected it further the admins, but not all users.
Example: I have the MGP group and only the administrators of wiki and the members of this group can edit a specified article.
I use the Mediawiki 1.17.
Thanks a lot
Adjust $wgRestrictionLevels or give the MGP group the "editprotected" right.
Thank Emufarmers and sorry for the late to answer you..
I have done it, and now the MGP group appears in the protect page, but with this configuration I have another problem now.
When an admin protects the page to only administrators, the MGP groups can edit this pages. What do I have to do for solving it?
This is my LocalSettings:
$wgRestrictionLevels[] = 'MGP';
$wgGroupPermissions['MGP']['MGP'] = true;
$wgGroupPermissions['sysop']['MGP'] = true;
Thank you.
You didn't do that and give the MGP group the "editprotected" right, did you?
I have $wgGroupPermissions['MGP']['protect'] = true;
If I don't put this code, it's works like I want, but the group's user can't protect the pages :(
The permissions system (at least without extensions) isn't granular enough to allow you to have a group that can protect pages but can't edit all protected pages. Sorry.