summaryrefslogtreecommitdiff
path: root/conf/dokuwiki.php
diff options
context:
space:
mode:
authorromain <romain.coltel@gmail.com>2012-01-30 19:58:55 +0100
committerromain <romain.coltel@gmail.com>2012-01-30 19:58:55 +0100
commitb78bf706e2ab1d34498beea00b7ecfda11944eee (patch)
tree181193ea60d0d48ab44a2dd181ce23cf22d2e856 /conf/dokuwiki.php
parent378325f948e677b0253c6dc5e268aa753d3a10f1 (diff)
downloadrpg-b78bf706e2ab1d34498beea00b7ecfda11944eee.tar.gz
rpg-b78bf706e2ab1d34498beea00b7ecfda11944eee.tar.bz2
Added support for the %GROUP% wildcard.
%GROUP% is the same as %USER% except it's done on each group a user is in. %USER% and %GROUP% cannot be mixed on an ACL line.
Diffstat (limited to 'conf/dokuwiki.php')
-rwxr-xr-x[-rw-r--r--]conf/dokuwiki.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/conf/dokuwiki.php b/conf/dokuwiki.php
index 7a7e4bf1a..2beb65600 100644..100755
--- a/conf/dokuwiki.php
+++ b/conf/dokuwiki.php
@@ -69,6 +69,8 @@ $conf['iexssprotect']= 1; // check for JavaScript and HTML in up
/* Authentication Options - read http://www.splitbrain.org/dokuwiki/wiki:acl */
$conf['useacl'] = 0; //Use Access Control Lists to restrict access?
+$conf['usewildcards'] = 1; //Use ACL wildcards
+$conf['groupwildcards'] = 1; //More specifically, use %GROUP% wildcard
$conf['autopasswd'] = 1; //autogenerate passwords and email them to user
$conf['authtype'] = 'plain'; //which authentication backend should be used
$conf['passcrypt'] = 'smd5'; //Used crypt method (smd5,md5,sha1,ssha,crypt,mysql,my411)