From ed7b5f0908941f1bacef7e7c3a02c106a42cd5cc Mon Sep 17 00:00:00 2001 From: andi Date: Sat, 19 Feb 2005 11:20:55 +0100 Subject: added init.php - may have broken something! (related to #153) darcs-hash:20050219102055-9977f-575d654e742934c911ffab855d82aa91f198b5cf.gz --- doku.php | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) (limited to 'doku.php') diff --git a/doku.php b/doku.php index d1781a9a2..c69462574 100644 --- a/doku.php +++ b/doku.php @@ -5,14 +5,15 @@ * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) * @author Andreas Gohr */ - - require_once("conf/dokuwiki.php"); - require_once("inc/common.php"); - require_once("inc/html.php"); - require_once("inc/parser.php"); - require_once("lang/en/lang.php"); - require_once("lang/".$conf['lang']."/lang.php"); - require_once("inc/auth.php"); + + if(!defined('DOKU_INC')) define('DOKU_INC',realpath(dirname(__FILE__)).'/'); + require_once(DOKU_INC.'inc/init.php'); + require_once(DOKU_INC.'inc/common.php'); + require_once(DOKU_INC.'inc/html.php'); + require_once(DOKU_INC.'inc/parser.php'); + require_once(DOKU_INC.'lang/en/lang.php'); + require_once(DOKU_INC.'lang/'.$conf['lang'].'/lang.php'); + require_once(DOKU_INC.'inc/auth.php'); //import variables $QUERY = trim($_REQUEST['id']); @@ -73,7 +74,7 @@ //unlock it unlock($id); //show it - header("Location: ".wl($ID, '','doku.php',true)); + header("Location: ".wl($ID,'',true)); exit(); } } -- cgit v1.2.3