I'm using a flash notice in a Rails application, with the following code:
flash[:notice] = "Sorry, we weren't able to log you in with those details."
render :action => :new
The flash message renders as expected on the 'new' action, but then it also shows on the next page the user visits (whatever that might be). It should only show once, but something's making it stick around.