diff options
-rw-r--r-- | app/views/body/show.rhtml | 4 | ||||
-rw-r--r-- | app/views/request/new.rhtml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/app/views/body/show.rhtml b/app/views/body/show.rhtml index 7fcbcf27b..5d5c15cea 100644 --- a/app/views/body/show.rhtml +++ b/app/views/body/show.rhtml @@ -1,6 +1,6 @@ -<% @title = h(@public_body.name) %> +<% @title = "Information freed from '" + h(@public_body.name) + "'" %> -<h1><%=@title%></h1> +<h1><%=h(@public_body.name)%></h1> <p class="subtitle"> <%=@public_body.type_of_authority.capitalize%> in the UK<% if not @public_body.short_name.empty? %>, also called <%= h(@public_body.short_name) %><% end %> diff --git a/app/views/request/new.rhtml b/app/views/request/new.rhtml index d36f1142a..44bae85c9 100644 --- a/app/views/request/new.rhtml +++ b/app/views/request/new.rhtml @@ -1,4 +1,4 @@ -<% @title = "New FOI request to '" + h(@info_request.public_body.name) + "'" %> +<% @title = "Make an FOI request to '" + h(@info_request.public_body.name) + "'" %> <% if @existing_request %> <div class="errorExplanation" id="errorExplanation"><ul> |