From 506b397e8a5e02021fc72436d0f0f3881a9dad53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20de=20Villamil?= Date: Mon, 9 Sep 2013 22:47:21 +0200 Subject: [PATCH] Fixes HTML escaped in authors page. Issue #240. --- app/helpers/authors_helper.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/helpers/authors_helper.rb b/app/helpers/authors_helper.rb index b40c6bca83..ba1a5d9274 100644 --- a/app/helpers/authors_helper.rb +++ b/app/helpers/authors_helper.rb @@ -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