Use hash-based flash objects to render complex flash messages
Since flash objects can only be String, Hash or Array (notably excluding SafeBuffers), then this approach is necessary to render complex html in a safe manner. Each local can be treated as an (unsafe) string, and therefore escaped normally when rendered into the template. The template (and translation strings) can contain html since they are no longer stored in the flash as a plain string. Fixes #3215
This commit is contained in:
parent
f6818bb2ed
commit
24f6aeda6a
6 changed files with 43 additions and 5 deletions
|
@ -66,7 +66,7 @@ class ConfirmationsController < ApplicationController
|
|||
flash[:error] = t "confirmations.confirm_resend.failure", :name => params[:display_name]
|
||||
else
|
||||
UserMailer.signup_confirm(user, user.tokens.create).deliver_later
|
||||
flash[:notice] = t "confirmations.confirm_resend.success_html", :email => user.email, :sender => Settings.email_from
|
||||
flash[:notice] = { :partial => "confirmations/resend_success_flash", :locals => { :email => user.email, :sender => Settings.email_from } }
|
||||
end
|
||||
|
||||
redirect_to login_path
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue