Commit a79644a4c2f54ad353ad399481bb0b6dd8ab988f
1 parent
39516063
Exists in
master
and in
29 other branches
ActionItem221: fixing malformed url for new articles
git-svn-id: https://svn.colivre.coop.br/svn/noosfero/trunk@1570 3f533792-8f58-4932-b0fe-aaf55b0a4547
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
app/views/cms/view.rhtml
... | ... | @@ -59,7 +59,7 @@ |
59 | 59 | <%= _('"%{article}", last changed by %{author}') % { :article => @article.name, :author => (@article.last_changed_by ? @article.last_changed_by.name : _('Unknown User')) } %> |
60 | 60 | </li> |
61 | 61 | <li> |
62 | - <%= _('Public address of this article: %s') % link_to(@article.url, @article.url) %> | |
62 | + <%= _('Public address of this article: %s') % link_to(url_for(@article.url), @article.url) %> | |
63 | 63 | </li> |
64 | 64 | <li> |
65 | 65 | <%= _('Tags:') %> <%= @article.tag_list %> | ... | ... |