summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEsther Brunner <esther@kaffeehaus.ch>2005-09-02 15:34:42 +0200
committerEsther Brunner <esther@kaffeehaus.ch>2005-09-02 15:34:42 +0200
commitb7551a6d968242f2762d99d4bbb2bcab12886f0d (patch)
tree7e06a155b2547db900d6c2c2b5c03e9ea6903495
parent8f1d587c911d8ea5357e70d211735110e7ce6072 (diff)
downloadrpg-b7551a6d968242f2762d99d4bbb2bcab12886f0d.tar.gz
rpg-b7551a6d968242f2762d99d4bbb2bcab12886f0d.tar.bz2
Constant DOCU_CONF corrctly initialisied (had a slash to much)
darcs-hash:20050902133442-283c4-5793471583d07fe58e652f40f485508d239e84cc.gz
-rw-r--r--inc/init.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/init.php b/inc/init.php
index d3afe1174..904fa1726 100644
--- a/inc/init.php
+++ b/inc/init.php
@@ -7,7 +7,7 @@
if(!defined('DOKU_INC')) define('DOKU_INC',realpath(dirname(__FILE__).'/../').'/');
// define config path (packagers may want to change this to /etc/dokuwiki/)
- if(!defined('DOKU_CONF')) define('DOKU_CONF',DOKU_INC.'/conf/');
+ if(!defined('DOKU_CONF')) define('DOKU_CONF',DOKU_INC.'conf/');
// set up error reporting to sane values
error_reporting(E_ALL ^ E_NOTICE);