Commit 448bbe87022659f4cde4081f66db121f037abdd3

Authored by Victor Costa
2 parents 34ed51d1 ba88338d

Merge branch 'rails3' of gitlab.com:noosfero/noosfero into rails3

* 'rails3' of gitlab.com:noosfero/noosfero:
  Fix escaping in blog post authorship info
Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
app/helpers/content_viewer_helper.rb
... ... @@ -26,7 +26,7 @@ module ContentViewerHelper
26 26 end
27 27 title << content_tag('span',
28 28 content_tag('span', show_date(article.published_at), :class => 'date') +
29   - content_tag('span', [_(", by %s") % link_to(article.author_name, article.author_url)], :class => 'author') +
  29 + content_tag('span', _(", by %s") % link_to(article.author_name, article.author_url), :class => 'author') +
30 30 content_tag('span', comments, :class => 'comments'),
31 31 :class => 'created-at'
32 32 )
... ...