From 7523ef1012514bb382b06f2169b4b419b4ed0e7d Mon Sep 17 00:00:00 2001 From: Rick Ellis Date: Fri, 6 Mar 2009 22:31:19 +0000 Subject: Removed the "index.php" portion from the FCPATH constant, as it was not needed. --- index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.php b/index.php index 39aeda5c9..bac85d9a5 100644 --- a/index.php +++ b/index.php @@ -79,15 +79,15 @@ else |--------------------------------------------------------------- | | EXT - The file extension. Typically ".php" -| FCPATH - The full server path to THIS file | SELF - The name of THIS file (typically "index.php") +| FCPATH - The full server path to THIS file | BASEPATH - The full server path to the "system" folder | APPPATH - The full server path to the "application" folder | */ define('EXT', '.'.pathinfo(__FILE__, PATHINFO_EXTENSION)); -define('FCPATH', __FILE__); define('SELF', pathinfo(__FILE__, PATHINFO_BASENAME)); +define('FCPATH', str_replace(SELF, '', __FILE__)); define('BASEPATH', $system_folder.'/'); if (is_dir($application_folder)) -- cgit v1.2.3-24-g4f1b