Thanks, your solution solved my problem

Your route:
>
>    <route name="country" pattern="" module="Countries">
>        <route name=".list" pattern="^/countries1" action="List" />
>    </route>
>
> blocks the further execution, because it matches on everything
> (pattern='').
>
> This should resolve the issue:
>
>    <route name="country" pattern="^/countries" module="Countries">
>        <route name=".list" pattern="^1$" action="List" />
>    </route>
>
> Kind regards,
>  Draco
>


-- 
Atte
Rafael Ángel Guerrero Godoy
_______________________________________________
users mailing list
[email protected]
http://lists.agavi.org/mailman/listinfo/users

Reply via email to