You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This route used to work in a previous version
/client/[a:Action]?/[:ID]?/[**:trailing]?
Accessing the route without an action where if Action wasn't defined it would still find the route eg http://altorouter.com/client
now it only works if you have an action http://altorouter.com/client/list
Adding a / on line 210 so it does a strpos of '[' fixes this issue
210: } elseif (($position = strpos($route, '/[')) === false) {
The text was updated successfully, but these errors were encountered:
This route used to work in a previous version
/client/[a:Action]?/[:ID]?/[**:trailing]?
Accessing the route without an action where if Action wasn't defined it would still find the route eg http://altorouter.com/client
now it only works if you have an action http://altorouter.com/client/list
Adding a / on line 210 so it does a strpos of '[' fixes this issue
210: } elseif (($position = strpos($route, '/[')) === false) {
The text was updated successfully, but these errors were encountered: