Le 24.11.2008 19:27, « Roan Kattouw » roan.kattouw@home.nl a écrit :
K. Peachey schreef:
I created a new usergroup in my mediawiki install called Staff and I want to set up a Restriction level so i can page edit restrictions/protection except the manual page about RestrcitionLevels http://www.mediawiki.org/wiki/Manual:$wgRestrictionLevels doesn't show much information about it so i was wondering how i would go about setting it up?
$wgRestrictionLevels[] = 'staff';
in LocalSettings.php
Remember that values in $wgRestrictionLevels are rights and *not* groups (except for sysop which is kept for backward compatibility). To use this, you need to add something like this in LocalSettings.php:
$wgGroupPermissions['staff']['staff'] = true;
Alexandre Emsenhuber (ialex)