diff options
author | Rick Ellis <rick.ellis@ellislab.com> | 2009-03-06 23:32:23 +0100 |
---|---|---|
committer | Rick Ellis <rick.ellis@ellislab.com> | 2009-03-06 23:32:23 +0100 |
commit | f88ad5e88fded3d1bfbf71ef9c194ebcc433c5e0 (patch) | |
tree | 0b25b994df3fc869e59d1b77b605b690432f9afd | |
parent | 7523ef1012514bb382b06f2169b4b419b4ed0e7d (diff) |
Updated _parse_request_uri to reflect the fact that FCPATH no longer contains index.php as part of the path.
-rw-r--r-- | system/libraries/URI.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/URI.php b/system/libraries/URI.php index e74af31f4..73ddec87c 100644 --- a/system/libraries/URI.php +++ b/system/libraries/URI.php @@ -146,7 +146,7 @@ class CI_URI { return ''; } - $fc_path = FCPATH; + $fc_path = FCPATH.SELF; if (strpos($request_uri, '?') !== FALSE) { $fc_path .= '?'; |