diff options
author | Matthew Landauer <matthew@openaustralia.org> | 2013-02-26 14:21:38 +1100 |
---|---|---|
committer | Matthew Landauer <matthew@openaustralia.org> | 2013-02-26 14:21:38 +1100 |
commit | fba98d789cd3ab04cc0e1969f5bb15b7c268f816 (patch) | |
tree | 534ad8688377c5818721459329a9b7b5bb3e990e /app/controllers/admin_request_controller.rb | |
parent | a90ad580a86441e66a378cb1aca7ec2e4b2b15d3 (diff) |
Make flash message in admin interface html safe
Diffstat (limited to 'app/controllers/admin_request_controller.rb')
-rw-r--r-- | app/controllers/admin_request_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/admin_request_controller.rb b/app/controllers/admin_request_controller.rb index ed8de7755..a0ade5d19 100644 --- a/app/controllers/admin_request_controller.rb +++ b/app/controllers/admin_request_controller.rb @@ -304,7 +304,7 @@ class AdminRequestController < AdminController post_redirect.save! url = main_url(confirm_url(:email_token => post_redirect.email_token, :only_path => true)) - flash[:notice] = 'Send "' + name + '" <<a href="mailto:' + email + '">' + email + '</a>> this URL: <a href="' + url + '">' + url + "</a> - it will log them in and let them upload a response to this request.".html_safe + flash[:notice] = ('Send "' + name + '" <<a href="mailto:' + email + '">' + email + '</a>> this URL: <a href="' + url + '">' + url + "</a> - it will log them in and let them upload a response to this request.").html_safe redirect_to request_admin_url(info_request) end |