summaryrefslogtreecommitdiffstats
path: root/system/core/URI.php
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2014-05-01 11:47:42 +0200
committerAndrey Andreev <narf@devilix.net>2014-05-01 11:47:42 +0200
commit4e4f2f596700e6892b31b8b6ce987b2511a3cd98 (patch)
treeb0afc4ca867a1eec19768f3a3a176ce1fd859e1c /system/core/URI.php
parentac9ee53f47d3fe3803d6d3cfe3a058edd8895971 (diff)
Fix a typo
Diffstat (limited to 'system/core/URI.php')
-rw-r--r--system/core/URI.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/core/URI.php b/system/core/URI.php
index 2361ecf7d..3b4d2e07f 100644
--- a/system/core/URI.php
+++ b/system/core/URI.php
@@ -160,7 +160,7 @@ class CI_URI {
$this->segments[0] = NULL;
// Populate the segments array
- foreach (explode('/', trim($this->uri->string, '/')) as $val)
+ foreach (explode('/', trim($this->uri_string, '/')) as $val)
{
// Filter segments for security
$val = trim($this->filter_uri($val));