diff options
author | Seb Bacon <seb.bacon@gmail.com> | 2011-09-16 09:52:53 +0100 |
---|---|---|
committer | Seb Bacon <seb.bacon@gmail.com> | 2011-09-16 12:09:36 +0100 |
commit | 8d950f8feabd6aea7c48d5ce059046ac7c182bf8 (patch) | |
tree | 7f384f475c798addacc2d77c68377172762b9d87 | |
parent | 685efa20c18e6b8d2d446a42636cc8fc0138f3c0 (diff) |
Fix stray comma
-rw-r--r-- | app/views/public_body/show.rhtml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/app/views/public_body/show.rhtml b/app/views/public_body/show.rhtml index 56cc9668c..6c1bf626e 100644 --- a/app/views/public_body/show.rhtml +++ b/app/views/public_body/show.rhtml @@ -31,8 +31,7 @@ <h1><%=h(@public_body.name)%></h1> <p class="subtitle"> - <%=@public_body.type_of_authority(true)%> - <% if not @public_body.short_name.empty? %>, + <%=@public_body.type_of_authority(true)%><% if not @public_body.short_name.empty? %>, <%= _('also called {{public_body_short_name}}', :public_body_short_name => h(@public_body.short_name))%><% end %> <% if !@user.nil? && @user.admin_page_links? %> (<%= link_to _("admin"), public_body_admin_url(@public_body) %>) |