diff plugins/redmine_bibliography/app/helpers/authorships_helper.rb @ 1325:4ef7df804bab redmine-2.2-integration

Correctly displays the authors of a publication in the show view.
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Wed, 19 Jun 2013 18:27:44 +0100
parents 2805873c0147
children
line wrap: on
line diff
--- a/plugins/redmine_bibliography/app/helpers/authorships_helper.rb	Wed Jun 19 18:17:33 2013 +0100
+++ b/plugins/redmine_bibliography/app/helpers/authorships_helper.rb	Wed Jun 19 18:27:44 2013 +0100
@@ -15,7 +15,7 @@
         s << link_to(authorship.name_on_paper, :controller => 'users', :action => 'show', :id => authorship.author.user)
       end
     end
-    s
+    s.html_safe
   end
 
 end