public 'route' => object(Fuel\Core\Route)[3] public 'segments' => array 0 => string 'test' (length=4) 1 => string 'index' (length=5) public 'named_params' => array empty public 'method_params' => array empty public 'path' => string 'admin/(:segment)/(:any)' (length=23) public 'module' => null public 'directory' => null public 'controller' => string 'test' (length=4) public 'action' => string 'index' (length=5) public 'translation' => string '$1/index/$2' (length=11) protected 'search' => string 'admin/([^/]+([^/]*))/(.+)' (length=25)
$this->search = str_replace(array(':any', ':segment'), array('.+', '[^/]*'), $this->path);$2 works again, and the extra URI parameters will end up in the params array. If you can confirm this works, I'll commit the fix later.
It looks like you're new here. If you want to get involved, click one of these buttons!