symfony - KnpMenuBundle: why using 'route' instead of 'uri' transforms the <a> element to <span>? -
i'm creating bundle knpmenubundle on symfony 2.3.x , doesn't mark current element, so, thought problem has using 'uri' instead of 'route' since i'm on symfony , all, thing is, when use route, element changes from <li><a href="engineerings">engineerings</a></li> to: <li><span>engineerings</span></li> the <a> element public function mainmenu(factoryinterface $factory, array $options) { $factory = new menufactory(); $menu = $factory->createitem('root'); $menu->setchildrenattributes(array('id' => 'tabs', 'class' => 'fl')); $menu->addchild('cooperators', array('uri' => 'companies')); $menu->addchild('customers', array('uri' => 'clients')); $menu->addchild('engineerings', array('uri' => 'engi...