From a463ffe90058ef7793f127a3f7d4f10db473517e Mon Sep 17 00:00:00 2001 From: Leandro Nunes dos Santos Date: Tue, 30 Aug 2016 18:21:09 -0300 Subject: [PATCH] fix radio_group html escape --- app/helpers/application_helper.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index 1a1a90d..02f61c6 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -539,7 +539,7 @@ module ApplicationHelper ) label_html = self.class.content_tag 'label', text, :class => 'formlabel' - control_html = self.class.content_tag 'div', html, + control_html = self.class.content_tag 'div', html.html_safe, :class => 'formfield type-radio '+ 'fieldgroup linesize'+line_size.to_s() -- libgit2 0.21.2