Browse Source

Rails3: use String#html_safe for custom_field_label_tag() at CustomFieldsHelper.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6475 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/1.3.0
Toshi MARUYAMA 12 years ago
parent
commit
86379d8203
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      app/helpers/custom_fields_helper.rb

+ 1
- 1
app/helpers/custom_fields_helper.rb View File

@@ -58,7 +58,7 @@ module CustomFieldsHelper
# Return custom field label tag
def custom_field_label_tag(name, custom_value)
content_tag "label", h(custom_value.custom_field.name) +
(custom_value.custom_field.is_required? ? " <span class=\"required\">*</span>" : ""),
(custom_value.custom_field.is_required? ? " <span class=\"required\">*</span>".html_safe : ""),
:for => "#{name}_custom_field_values_#{custom_value.custom_field.id}",
:class => (custom_value.errors.empty? ? nil : "error" )
end

Loading…
Cancel
Save