commit | 704f3f5223637dd6008106b1d04a68668458590e | [log] [tgz] |
---|---|---|
author | Andrey Andreev <narf@bofh.bg> | Wed Oct 31 16:50:13 2012 +0200 |
committer | Andrey Andreev <narf@bofh.bg> | Wed Oct 31 16:50:13 2012 +0200 |
tree | 4ca43b735f2283d93324eec3e05acc38be2c157d | |
parent | f2b19fee7876708c7a7bb5cba6b7df682a9d2a53 [diff] |
Fix an erroneous variable name
diff --git a/system/core/URI.php b/system/core/URI.php index 6692d07..407a6ce 100644 --- a/system/core/URI.php +++ b/system/core/URI.php
@@ -114,7 +114,7 @@ $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; }