diff options
-rw-r--r-- | app/views/body/show.rhtml | 2 | ||||
-rw-r--r-- | app/views/request/new.rhtml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/views/body/show.rhtml b/app/views/body/show.rhtml index 4c748644c..ec09dfb70 100644 --- a/app/views/body/show.rhtml +++ b/app/views/body/show.rhtml @@ -13,7 +13,7 @@ </p> <% if @public_body.notes != "" %> -<p><%=@public_body.notes%></p> + <p><%=MySociety::Format.make_clickable(@public_body.notes) %></p> <% end %> <% if @public_body.eir_only? %> diff --git a/app/views/request/new.rhtml b/app/views/request/new.rhtml index 249377682..3e6bc7630 100644 --- a/app/views/request/new.rhtml +++ b/app/views/request/new.rhtml @@ -42,7 +42,7 @@ <% if @info_request.public_body.notes != "" %> <h1>Special note for this authority!</h1> <ul> - <li><%=@info_request.public_body.notes %></li> + <li><%=MySociety::Format.make_clickable(@info_request.public_body.notes) %></li> </ul> <% end %> |