diff options
Diffstat (limited to 'system')
-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 e3c911511..633524023 100644 --- a/system/core/Router.php +++ b/system/core/Router.php @@ -446,7 +446,7 @@ class CI_Router { // If we got this far it means we didn't encounter a // matching route so we'll set the site default route - $this->_set_request($this->uri->segments); + $this->_set_request(array_values($this->uri->segments)); } // -------------------------------------------------------------------- |