I have a little problem with FlashMessenger. When I want to retrieve the messages in my layout, it writes the first letter of the message... example "test" displays "t".
I tried a solution posted in this question, but nothing changed for me.
I use php 5.3.6
Here is my code:
In my method :
$message = 'test'; $this->_helper->FlashMessenger($message);
Call in the Layout
<div id="message_box"> <?php echo $this->flashMessages(); ?> </div>
Can someone help me?