i want to add support for flash messages on our pages. I implemented this by following the documentation found here:
http://symfony.com/doc/current/book/controller.html#index-13
i added the following snipplet to my base layout. (i also tried to add it to a specific action template).
{% if app.session.hasFlash('notice') %}
<div id="flashmessage" class="flash-notice">
{{ app.session.flash('notice') }}
</div>
{% endif %}
After adding the following error is thrown
Twig_Error_Runtime: Item "hasFlash" for "" does not exist in "MyBundle::layout.html.twig" at line 66
Is there anything else i need to do ? Thanks, Stephan
var_dump($this->get('session'));output in your controller action? – Jaitsu Nov 23 '11 at 13:38