diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-11-04 19:08:42 +0100 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-11-04 19:08:42 +0100 |
commit | a3f5c5c78f6172565e3264764e1de7dcad894b0a (patch) | |
tree | 97a4d703643fd7ad6a8a4c4bdb4301e4fd648dc1 /system/core | |
parent | b1b1528183d46c001afa08352ad35b2ec341ebc5 (diff) |
Fix #98
Diffstat (limited to 'system/core')
-rw-r--r-- | system/core/Router.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/core/Router.php b/system/core/Router.php index 67e9b300d..30bf39657 100644 --- a/system/core/Router.php +++ b/system/core/Router.php @@ -147,7 +147,7 @@ class CI_Router { // Set the default controller so we can display it in the event // the URI doesn't correlated to a valid controller. - $this->default_controller = empty($this->routes['default_controller']) ? FALSE : strtolower($this->routes['default_controller']); + $this->default_controller = empty($this->routes['default_controller']) ? FALSE : $this->routes['default_controller']; // Were there any query string segments? If so, we'll validate them and bail out since we're done. if (count($segments) > 0) |