diff options
author | Andrey Andreev <narf@bofh.bg> | 2013-04-08 00:20:31 +0200 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2013-04-08 00:20:31 +0200 |
commit | 5eb1cbfa673bfa4b8a66ab8a56389a279c1f975b (patch) | |
tree | 72723240566df7c6a59c4f455b839d5d4964d37d | |
parent | 8e038d50e8c94d610bfdedf01318462b7ddd8670 (diff) |
Replace another fetch_directory() use
-rw-r--r-- | system/core/URI.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/core/URI.php b/system/core/URI.php index b2286f032..bc086d223 100644 --- a/system/core/URI.php +++ b/system/core/URI.php @@ -720,7 +720,7 @@ class CI_URI { { global $RTR; - if (($dir = $RTR->fetch_directory()) === '/') + if (($dir = $RTR->directory) === '/') { $dir = ''; } |