From 0c41ba83057126bfa2414083a1d596cb5e25e010 Mon Sep 17 00:00:00 2001 From: saxmatt Date: Mon, 26 May 2003 13:31:55 +0000 Subject: [PATCH] Earlier path fix that was missed. git-svn-id: http://svn.automattic.com/wordpress/trunk@107 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- blog.header.php | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/blog.header.php b/blog.header.php index a214f023ed..be3332fcd5 100644 --- a/blog.header.php +++ b/blog.header.php @@ -3,14 +3,10 @@ $use_cache = 1; $use_gzipcompression = 1; -/* Including config and functions files */ /* Including config and functions files */ $curpath = dirname(__FILE__).'/'; -require_once ($curpath.'/b2config.php'); -if (($b2inc{0} == '/') || ($b2inc{1} == ':')) { - $curpath='./'; -} +require_once ($curpath.'/b2config.php'); require_once ($curpath.$b2inc.'/b2template.functions.php'); require_once ($curpath.$b2inc.'/b2vars.php'); require_once ($curpath.$b2inc.'/b2functions.php');