Welcome Guest, Not a member yet? Register   Sign In
Wildcards :num and :any not working in my routes
#9

[eluser]_yuri_[/eluser]
[quote author="eggshape" date="1200036128"]
I don't think it matters where you define $route['default_controller'] and $route['scaffolding_trigger']. First $route is an associative array so there's really no order, and the default controller is used in case everything else fails.
[/quote]
No, it is. Look at this code in the _parse_routes function of Router.php:

Code:
// Loop through the route array looking for wild-cards
        foreach (array_slice($this->routes, 1) as $key => $val)
        {                        
...

array_slice($this->routes, 1) means that it skips the first element in the $route array. Because $route['default_controller'] is already unset (see _set_route_mapping()) to this moment, it means that the skipped element is
a) $route['scaffolding_trigger'] if you define your rules after that
b) your first rule, if you define your rules before $route['scaffolding_trigger'].

I wonder, why do not use unset($route['scaffolding_trigger']) to avoid the $route['scaffolding_trigger']) is processed as rule ? I hope the next version fix this.


Messages In This Thread
Wildcards :num and :any not working in my routes - by El Forum - 08-11-2007, 06:10 AM
Wildcards :num and :any not working in my routes - by El Forum - 08-11-2007, 11:02 AM
Wildcards :num and :any not working in my routes - by El Forum - 08-11-2007, 04:01 PM
Wildcards :num and :any not working in my routes - by El Forum - 08-25-2007, 11:41 AM
Wildcards :num and :any not working in my routes - by El Forum - 08-25-2007, 12:23 PM
Wildcards :num and :any not working in my routes - by El Forum - 08-25-2007, 12:50 PM
Wildcards :num and :any not working in my routes - by El Forum - 01-10-2008, 03:19 AM
Wildcards :num and :any not working in my routes - by El Forum - 01-10-2008, 07:22 PM
Wildcards :num and :any not working in my routes - by El Forum - 01-11-2008, 06:36 AM
Wildcards :num and :any not working in my routes - by El Forum - 01-11-2008, 11:53 AM



Theme © iAndrew 2016 - Forum software by © MyBB