From 75887a6c0c19f7f901c8c65553de2aece5ba6d83 Mon Sep 17 00:00:00 2001 From: Phil Sturgeon Date: Fri, 12 Mar 2010 00:27:51 +0000 Subject: Fixed constant SELF undefined issue when a bad system folder is set. --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.php b/index.php index 0ad8fd823..f27520e72 100644 --- a/index.php +++ b/index.php @@ -113,7 +113,7 @@ // Is the sytsem path correct? if ( ! is_dir($system_path)) { - exit("Your system folder path does not appear to be set correctly. Please open the following file and correct this: ".SELF); + exit("Your system folder path does not appear to be set correctly. Please open the following file and correct this: ".pathinfo(__FILE__, PATHINFO_BASENAME)); } /* -- cgit v1.2.3-24-g4f1b