From 9a7b7e9b874cb4fd5b3463d39259f3a1bde5cc55 Mon Sep 17 00:00:00 2001 From: Toks Date: Sat, 10 May 2014 13:42:44 -0400 Subject: [PATCH] fix #2152 --- app/views/users/edit.html.erb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/users/edit.html.erb b/app/views/users/edit.html.erb index 4275e7b7d..8f8b4b013 100644 --- a/app/views/users/edit.html.erb +++ b/app/views/users/edit.html.erb @@ -38,7 +38,7 @@ <%= f.input :per_page, :label => "Posts per page", :as => :select, :collection => (1..100), :include_blank => false %> <% end %> - <%= f.input :blacklisted_tags, :hint => "Put any tag combinations you never want to see here. Each combination should go on a separate line. View help.", :input_html => {:size => "40x5"} %> + <%= f.input :blacklisted_tags, :hint => "Put any tag combinations you never want to see here. Each combination should go on a separate line. View help.".html_safe, :input_html => {:size => "40x5"} %>
@@ -54,7 +54,7 @@ A list of tags that you use often. They will appear when using the list of Related Tags. - <%= f.input :custom_style, :label => "Custom CSS style".html_safe, :hint => "Style to apply to the whole site." %> + <%= f.input :custom_style, :label => "Custom CSS style".html_safe, :hint => "Style to apply to the whole site.", :input_html => {:size => "40x5"} %>