Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[#4793] Public body name encoding in followups_controller.rb is inconsistent #7186

Draft
wants to merge 2 commits into
base: develop
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions app/controllers/followups_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -103,18 +103,18 @@ def check_user_credentials
def get_login_params(is_incoming, info_request)
if is_incoming
{ :web => _("To send a follow up message to {{authority_name}}",
:authority_name => info_request.public_body.name),
:authority_name => info_request.public_body.name.html_safe),
:email => _("Then you can write follow up message to {{authority_name}}.",
:authority_name => info_request.public_body.name),
:authority_name => info_request.public_body.name.html_safe),
:email_subject => _("Write your FOI follow up message to {{authority_name}}",
:authority_name => info_request.public_body.name) }
:authority_name => info_request.public_body.name.html_safe) }
else
{ :web => _("To reply to {{authority_name}}.",
:authority_name => info_request.public_body.name),
{ :web => _("To reply to {{authority_name}}",
:authority_name => info_request.public_body.name.html_safe),
:email => _("Then you can write your reply to {{authority_name}}.",
:authority_name => info_request.public_body.name),
:authority_name => info_request.public_body.name.html_safe),
:email_subject => _("Write a reply to {{authority_name}}",
:authority_name => info_request.public_body.name) }
:authority_name => info_request.public_body.name.html_safe) }
end
end

Expand Down