Commit 448bbe87022659f4cde4081f66db121f037abdd3
Exists in
master
and in
29 other branches
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,7 +26,7 @@ module ContentViewerHelper | ||
26 | end | 26 | end |
27 | title << content_tag('span', | 27 | title << content_tag('span', |
28 | content_tag('span', show_date(article.published_at), :class => 'date') + | 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 | content_tag('span', comments, :class => 'comments'), | 30 | content_tag('span', comments, :class => 'comments'), |
31 | :class => 'created-at' | 31 | :class => 'created-at' |
32 | ) | 32 | ) |