summaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2014-01-18 18:07:38 +0100
committerAndrey Andreev <narf@devilix.net>2014-01-18 18:07:38 +0100
commitf375272f3f9eaefe3b10f4d00b3fbe18faa77da5 (patch)
tree3905aa778525cca628efa689c238489a341c25f1 /system
parent87f1dd555b8b53695deb2aa7dc8b83845f2cd02c (diff)
parenta9237cb4ec63c8bc2e9dff911406c8c60aef7213 (diff)
Merge branch 'develop' into feature/output_compressed_cache
Diffstat (limited to 'system')
-rw-r--r--system/core/Router.php2
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));
}
// --------------------------------------------------------------------