summaryrefslogtreecommitdiffstats
path: root/system/core/URI.php
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2014-05-01 10:38:29 +0200
committerAndrey Andreev <narf@devilix.net>2014-05-01 10:38:29 +0200
commitaf98835114e3c6a66bf6c7a7799eac26e489a171 (patch)
treec74dcd4a00f3b3fda980c4f6a415be3d542e463d /system/core/URI.php
parentfc67edd293871565d0723924233186991337e704 (diff)
Optimization in CI_URI::_set_uri_string()
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 c990be7b4..2361ecf7d 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('/', preg_replace('|/*(.+?)/*$|', '\\1', $this->uri_string)) as $val)
+ foreach (explode('/', trim($this->uri->string, '/')) as $val)
{
// Filter segments for security
$val = trim($this->filter_uri($val));