To explain further, I have the following code in my Rails app Layout:
<!-- Stuff omitted -->
<% unless flash.empty? %>
<%= flash.each do |name, msg| %>
<%= content_tag :div, msg, :id => "flash_#{name}" %>
<% end %>
<% end %>
<%= yield %>
And for the controller:
#stuff omitted
def create
user = User.authenticate(params[:email], params[:password])
if user
session[:user_id] = user.id
redirect_to root_url, :notice => "Logged in!"
else
flash.now.alert = "Invalid email or password"
render :new
end
end
Ok, so, If I happen to fail the authentication, this is what I’m seeing in the browser:

Can you guys tell me why is the hash({:alert => “Invalid email or password”}) appearing under the message? I’m really clueless about what is wrong,
(BTW, This is taken from Rails Casts #250)
Just remove the equal sign from the start of the loop:
Because it tells ERB to print entire
flashvariable.