From 4e4f2f596700e6892b31b8b6ce987b2511a3cd98 Mon Sep 17 00:00:00 2001 From: Andrey Andreev Date: Thu, 1 May 2014 12:47:42 +0300 Subject: Fix a typo --- system/core/URI.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)); -- cgit v1.2.3-24-g4f1b