Skip to content

Commit

Permalink
Fixes HTML escaped in authors page. Issue publify#240.
Browse files Browse the repository at this point in the history
  • Loading branch information
Frédéric de Villamil committed Sep 9, 2013
1 parent e0ebb1b commit 506b397
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/helpers/authors_helper.rb
Expand Up @@ -4,7 +4,7 @@ def display_profile_item(item, show_item, item_desc)
if show_item
item = link_to(item, item) if is_url?(item)
content_tag :li do
"#{item_desc} #{item}"
"#{item_desc} #{item.html_safe}".html_safe
end
end
end
Expand Down

0 comments on commit 506b397

Please sign in to comment.