diff options
Diffstat (limited to 'system')
-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 72f293c18..13530bd63 100644 --- a/system/core/URI.php +++ b/system/core/URI.php @@ -219,7 +219,7 @@ class CI_URI { $_GET = array(); } - if ($uri === '/' OR empty($uri)) + if ($uri === '/' OR $uri === '') { return '/'; } |