From a9a149e2ee85554b18e05f67a80c48db5cf9a7c6 Mon Sep 17 00:00:00 2001 From: Hubert depesz Lubaczewski Date: Sun, 25 Sep 2011 16:33:46 +0200 Subject: [PATCH] fix "mail sent" message It was handled, but with a simple typo (stash!=flash). --- templates/controller/contact.html.ep | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/controller/contact.html.ep b/templates/controller/contact.html.ep index ddb99b7..1a835e4 100755 --- a/templates/controller/contact.html.ep +++ b/templates/controller/contact.html.ep @@ -5,9 +5,9 @@

<%= $title =%>

-% if ( stash 'message' ) { +% if ( flash 'message' ) {
-

<%= stash 'message' =%>

+

<%= flash 'message' =%>

% }