# HG changeset patch # User luisf # Date 1371662864 -3600 # Node ID 4ef7df804bab8fa541b0c0f5da11e30a9a1f6fbb # Parent 2e54ae6ab02fa7cbfaaf14d02a3264367024b07b Correctly displays the authors of a publication in the show view. diff -r 2e54ae6ab02f -r 4ef7df804bab plugins/redmine_bibliography/app/helpers/authorships_helper.rb --- 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 diff -r 2e54ae6ab02f -r 4ef7df804bab plugins/redmine_bibliography/app/views/publications/show.html.erb --- a/plugins/redmine_bibliography/app/views/publications/show.html.erb Wed Jun 19 18:17:33 2013 +0100 +++ b/plugins/redmine_bibliography/app/views/publications/show.html.erb Wed Jun 19 18:27:44 2013 +0100 @@ -14,13 +14,13 @@