Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Remove html_safe from already escaped flash message.
  • Loading branch information
parndt committed Mar 5, 2012
1 parent 430f7c4 commit f1e931e
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -42,7 +42,7 @@ def create
flash.now[:error] = if @refinery_user.email.blank?
t('blank_email', :scope => 'refinery.users.forgot')
else
t('email_not_associated_with_account_html', :email => @refinery_user.email, :scope => 'refinery.users.forgot').html_safe
t('email_not_associated_with_account_html', :email => @refinery_user.email, :scope => 'refinery.users.forgot')
end
render :new
end
Expand Down

0 comments on commit f1e931e

Please sign in to comment.