Commit 876bdd716c9fc0f0604c93b0b2e9eac3ebc9de33
1 parent
06ae7cf5
Exists in
master
and in
29 other branches
ActionItem806: oops: bug on meta-info translation of posts
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
app/helpers/content_viewer_helper.rb
| ... | ... | @@ -17,7 +17,7 @@ module ContentViewerHelper |
| 17 | 17 | unless args[:no_link] |
| 18 | 18 | title = content_tag('h3', link_to(article.name, article.url), :class => 'title') |
| 19 | 19 | end |
| 20 | - title << content_tag('span', _("%s, by %s" % [show_date(article.created_at), article.profile.name]), :class => 'created-at') | |
| 20 | + title << content_tag('span', _("%s, by %s") % [show_date(article.created_at), article.profile.name], :class => 'created-at') | |
| 21 | 21 | end |
| 22 | 22 | title |
| 23 | 23 | end | ... | ... |