diff options
author | Derek Allard <derek.allard@ellislab.com> | 2008-05-22 15:01:39 +0200 |
---|---|---|
committer | Derek Allard <derek.allard@ellislab.com> | 2008-05-22 15:01:39 +0200 |
commit | a459b46e7a5f67a96d0ea85e0778f1bf8858dbdd (patch) | |
tree | fef9c530260ea06155bbe931a1f4a187a2881529 /system/libraries/Router.php | |
parent | 908ecc6144ec1d21922cfaf8b7826e8faba4c610 (diff) |
Fixed a bug (#4561) where orhaving() wasn't properly passing values.
Removed some unused variables from the code (#4563).
Fixed a bug where having() was not adding an = into the statement (#4568).
Diffstat (limited to 'system/libraries/Router.php')
-rw-r--r-- | system/libraries/Router.php | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/system/libraries/Router.php b/system/libraries/Router.php index 6e705f842..c80830fc1 100644 --- a/system/libraries/Router.php +++ b/system/libraries/Router.php @@ -252,7 +252,6 @@ class CI_Router { // Turn the segment array into a URI string
$uri = implode('/', $this->uri->segments);
- $num = count($this->uri->segments);
// Is there a literal match? If so we're done
if (isset($this->routes[$uri]))
|