diff -r 5490d6392ee3 -r 75f258d6f747 plugins/redmine_bibliography/app/views/publications/show.html.erb
--- a/plugins/redmine_bibliography/app/views/publications/show.html.erb
+++ b/plugins/redmine_bibliography/app/views/publications/show.html.erb
@@ -11,21 +11,21 @@
 <div class="box">
 
 <h4><%= l(:authors) %></h4>
+
 <ul id="authorships">
   <% for authorship in @publication.authorships.find(:all, :order => :auth_order) %>
     <% content_tag_for :li, authorship do %>
       <%- if User.current.allowed_to?(:edit_publication, @project) && @publication.authorships.length > 1 -%>
         <span class="handle">[drag to reorder]</span>
       <%- end -%>
-      <%= link_to_authorship authorship %> <em><%= h authorship.institution %></em> <br />
+      
+      <%= link_to_authorship authorship %> <em><%= h(authorship.institution) %></em>
+      
+      <br />
     <%- end -%>
   <%- end -%>
 </ul>
 
-<%- if User.current.allowed_to?(:edit_publication, @project) && @publication.authorships.length > 1 -%>
-  <%= sortable_element("authorships", :url => { :controller => :publications, :action => :sort_author_order }, :handle => "handle") %>
-<%- end -%>
-
 <%- if @publication.bibtex_entry != nil -%>
   <%= show_bibtex_fields(@publication.bibtex_entry) %>
 <%- end -%>
@@ -36,7 +36,6 @@
   </p>
 <%- end -%>
 
-
 <% unless @publication.doi.blank? %>
   <p>
     <b><%= l(:field_doi)-%>:</b> <%= link_to h(@publication.doi), "http://dx.doi.org/#{@publication.doi}", {:target => "_blank"} -%>
