$router->add(
"/admin/:controller/a/:action/{params}",
array(
"controller" => 1,
"action" => 2,
)
);
When route is made like this, then after accessing params in Controller it somehow cuts of first character, like I have
controller/someaction/1234 then when accessing params it returns 234