diff options
author | Andreas Gohr <andi@splitbrain.org> | 2007-09-30 22:11:33 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2007-09-30 22:11:33 +0200 |
commit | d0a27cb03cdfea95e402e7896ea446c4d45b5942 (patch) | |
tree | 1c6fca1a13ae1674f2309ad291af0f44e74418c4 /doku.php | |
parent | 009768124df70258806ec3120189432d1b2bb912 (diff) | |
download | rpg-d0a27cb03cdfea95e402e7896ea446c4d45b5942.tar.gz rpg-d0a27cb03cdfea95e402e7896ea446c4d45b5942.tar.bz2 |
don't use fullpath() before initialized
darcs-hash:20070930201133-7ad00-a35a6c40f880116009efd9e50cb002bd75733369.gz
Diffstat (limited to 'doku.php')
-rw-r--r-- | doku.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -8,7 +8,7 @@ // xdebug_start_profiling(); - if(!defined('DOKU_INC')) define('DOKU_INC',fullpath(dirname(__FILE__)).'/'); + if(!defined('DOKU_INC')) define('DOKU_INC',dirname(__FILE__).'/'); require_once(DOKU_INC.'inc/init.php'); require_once(DOKU_INC.'inc/common.php'); require_once(DOKU_INC.'inc/events.php'); |