summaryrefslogtreecommitdiff
path: root/lib/exe/fetch.php
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2007-09-30 22:11:33 +0200
committerAndreas Gohr <andi@splitbrain.org>2007-09-30 22:11:33 +0200
commitd0a27cb03cdfea95e402e7896ea446c4d45b5942 (patch)
tree1c6fca1a13ae1674f2309ad291af0f44e74418c4 /lib/exe/fetch.php
parent009768124df70258806ec3120189432d1b2bb912 (diff)
downloadrpg-d0a27cb03cdfea95e402e7896ea446c4d45b5942.tar.gz
rpg-d0a27cb03cdfea95e402e7896ea446c4d45b5942.tar.bz2
don't use fullpath() before initialized
darcs-hash:20070930201133-7ad00-a35a6c40f880116009efd9e50cb002bd75733369.gz
Diffstat (limited to 'lib/exe/fetch.php')
-rw-r--r--lib/exe/fetch.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/exe/fetch.php b/lib/exe/fetch.php
index 031edd274..71ec2870b 100644
--- a/lib/exe/fetch.php
+++ b/lib/exe/fetch.php
@@ -6,7 +6,7 @@
* @author Andreas Gohr <andi@splitbrain.org>
*/
- if(!defined('DOKU_INC')) define('DOKU_INC',fullpath(dirname(__FILE__).'/../../').'/');
+ if(!defined('DOKU_INC')) define('DOKU_INC',dirname(__FILE__).'/../../');
define('DOKU_DISABLE_GZIP_OUTPUT', 1);
require_once(DOKU_INC.'inc/init.php');
require_once(DOKU_INC.'inc/common.php');