diff options
author | Phil Sturgeon <email@philsturgeon.co.uk> | 2010-03-12 01:27:51 +0100 |
---|---|---|
committer | Phil Sturgeon <email@philsturgeon.co.uk> | 2010-03-12 01:27:51 +0100 |
commit | 75887a6c0c19f7f901c8c65553de2aece5ba6d83 (patch) | |
tree | 99f426765a3549804846ee33c7452c539fa4cd7a | |
parent | d99e603f47e10adc015d4b804352db71f0563062 (diff) |
Fixed constant SELF undefined issue when a bad system folder is set.
-rw-r--r-- | index.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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)); } /* |