I have a simple search form on my layout, it sends data to the search controller wich displays the search results.
I implemented the security component on the search controller, it works fine if the request is from the controller itself (domain.com/searches) but it gets black-holed when the form is sumitted from any other controller.
This happens because the tokens are not inserted on the form unless I'm on the searches controller.
How can I activate security component across all controllers for the search form?
Thanks