summaryrefslogtreecommitdiffstats
path: root/system/core/URI.php
diff options
context:
space:
mode:
authorAndrey Andreev <narf@bofh.bg>2012-10-31 15:50:13 +0100
committerAndrey Andreev <narf@bofh.bg>2012-10-31 15:50:13 +0100
commit704f3f5223637dd6008106b1d04a68668458590e (patch)
tree4ca43b735f2283d93324eec3e05acc38be2c157d /system/core/URI.php
parentf2b19fee7876708c7a7bb5cba6b7df682a9d2a53 (diff)
Fix an erroneous variable name
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 6692d07a6..407a6ce88 100644
--- a/system/core/URI.php
+++ b/system/core/URI.php
@@ -114,7 +114,7 @@ class CI_URI {
$uri = isset($_SERVER['PATH_INFO']) ? $_SERVER['PATH_INFO'] : @getenv('PATH_INFO');
if (trim($uri, '/') !== '' && $uri !== '/'.SELF)
{
- $this->_set_uri_string($path);
+ $this->_set_uri_string($uri);
return;
}