summaryrefslogtreecommitdiff
path: root/feed.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 /feed.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 'feed.php')
-rw-r--r--feed.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/feed.php b/feed.php
index bb23381b7..b632918d4 100644
--- a/feed.php
+++ b/feed.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__).'/');
require_once(DOKU_INC.'inc/init.php');
require_once(DOKU_INC.'inc/common.php');
require_once(DOKU_INC.'inc/events.php');