diff options
author | Guy Brand <gb@isis.u-strasbg.fr> | 2006-03-03 21:47:06 +0100 |
---|---|---|
committer | Guy Brand <gb@isis.u-strasbg.fr> | 2006-03-03 21:47:06 +0100 |
commit | 6733ffadac7a450ceb29a754f0a669a6d86ef1eb (patch) | |
tree | d9c00c162f1491761ea820f27d4a90f71ff6c4af | |
parent | a2c0246e0f8908d1d0c4e7f242a76e38a6615aea (diff) | |
download | rpg-6733ffadac7a450ceb29a754f0a669a6d86ef1eb.tar.gz rpg-6733ffadac7a450ceb29a754f0a669a6d86ef1eb.tar.bz2 |
umask/mode should not be commented out
darcs-hash:20060303204706-19e2d-d7f95669aa1b703c31db1fe36e08b7368a49d337.gz
-rw-r--r-- | conf/dokuwiki.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/conf/dokuwiki.php b/conf/dokuwiki.php index 3e15fa689..7bcd8bcbc 100644 --- a/conf/dokuwiki.php +++ b/conf/dokuwiki.php @@ -8,9 +8,9 @@ /* Datastorage and Permissions */ -#$conf['umask'] = 0002; //set the global umask -#$conf['fmode'] = 0666; //set file creation mode -#$conf['dmode'] = 0777; //set direction creation mode +$conf['umask'] = 0002; //set the global umask +$conf['fmode'] = 0666; //set file creation mode +$conf['dmode'] = 0777; //set direction creation mode $conf['lang'] = 'en'; //your language $conf['basedir'] = ''; //absolute dir from serveroot - blank for autodetection |