summaryrefslogtreecommitdiff
path: root/conf/dokuwiki.php
diff options
context:
space:
mode:
authorGuy Brand <gb@isis.u-strasbg.fr>2008-02-27 15:25:15 +0100
committerGuy Brand <gb@isis.u-strasbg.fr>2008-02-27 15:25:15 +0100
commit7651d633d828ae1f70ca70634c5ebfe0686db25a (patch)
treed4d1aadeff14bdd43a83af4fc6daa7bae59e5b45 /conf/dokuwiki.php
parent52b0dd6759c3a1c726ae81acf5ab430b1ee6f308 (diff)
downloadrpg-7651d633d828ae1f70ca70634c5ebfe0686db25a.tar.gz
rpg-7651d633d828ae1f70ca70634c5ebfe0686db25a.tar.bz2
Superuser and manager now can be comma separated lists
This patch allows $conf['superuser'] and $conf['manager'] to be lists of values instead of only a single value. So one can put: $conf['superuser'] darcs-hash:20080227142515-19e2d-c160914589f71531583e7ddaab1fc6a81996efa1.gz
Diffstat (limited to 'conf/dokuwiki.php')
-rw-r--r--conf/dokuwiki.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/conf/dokuwiki.php b/conf/dokuwiki.php
index 0229a5af3..723d44de7 100644
--- a/conf/dokuwiki.php
+++ b/conf/dokuwiki.php
@@ -63,8 +63,8 @@ $conf['autopasswd'] = 1; //autogenerate passwords and email them
$conf['authtype'] = 'plain'; //which authentication backend should be used
$conf['passcrypt'] = 'smd5'; //Used crypt method (smd5,md5,sha1,ssha,crypt,mysql,my411)
$conf['defaultgroup']= 'user'; //Default groups new Users are added to
-$conf['superuser'] = '!!not set!!'; //The admin can be user or @group
-$conf['manager'] = '!!not set!!'; //The manager can be user or @group
+$conf['superuser'] = '!!not set!!'; //The admin can be user or @group or comma separated list user1,@group1,user2
+$conf['manager'] = '!!not set!!'; //The manager can be user or @group or comma separated list user1,@group1,user2
$conf['profileconfirm'] = '1'; //Require current password to confirm changes to user profile
$conf['disableactions'] = ''; //comma separated list of actions to disable
$conf['sneaky_index'] = 0; //check for namespace read permission in index view (0|1) (1 might cause unexpected behavior)