I have been developing a project with Symfony 2.8 and I've got a problem with redirections on Firefox. It works fine on every other browser but not in Firefox. When you click on the button on this page it won't redirect to any page in Firefox.
My code in a twig:
<button class="MoreButton" type="button">
<a href="{{ path('poznan') }}">Więcej</a>
</button>
My code in a controller:
/**
* @Route("/poznan", name="poznan")
*/
public function poznanPage(Request $request)
{
return $this->render('default/poznan.html.twig', []);
}
Do you have any ideas what might be wrong? :)