diff options
author | admin <devnull@localhost> | 2006-09-22 01:50:23 +0200 |
---|---|---|
committer | admin <devnull@localhost> | 2006-09-22 01:50:23 +0200 |
commit | c1fa07415179d63762f1a22f0f74660a8034707f (patch) | |
tree | 8eb458e58d1c221dfa01f2adc0a97cf084bcc805 /system/libraries/URI.php | |
parent | fc6d9079f9f47d7474c65d6bec2aa7305a35df64 (diff) |
Diffstat (limited to 'system/libraries/URI.php')
-rw-r--r-- | system/libraries/URI.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/URI.php b/system/libraries/URI.php index e831d9526..89ca42e44 100644 --- a/system/libraries/URI.php +++ b/system/libraries/URI.php @@ -280,7 +280,7 @@ class CI_URI { $leading = '/'; $trailing = '/'; } - return ( ! isset($this->router->$which[$n])) ? '' : $leading.$this->router->$which[$n].$trailing; + return $leading.$this->$which($n).$trailing; } // -------------------------------------------------------------------- |