i was trying to add new routes to my Zend Framework 1 application. But it seems to understand my 2 params as one. How can i fix that?
$route = new Zend_Controller_Router_Route(':name-:type', array('controller' => 'tour', 'action' => 'index'));
$route = $routeLang->chain($route);
$router->addRoute('tour', $route);