summaryrefslogtreecommitdiffstats
path: root/app/helpers/custom_fields_helper.rb
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-08-20 10:50:59 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-08-20 10:50:59 +0000
commit86379d82031ca79adc93ae42fa2771a325f5354c (patch)
treecf12ceca029008572b83604b869c7e260b10da8f /app/helpers/custom_fields_helper.rb
parentd77682a964333b7e4dafb318878ff2c54cd5a91e (diff)
downloadredmine-86379d82031ca79adc93ae42fa2771a325f5354c.tar.gz
redmine-86379d82031ca79adc93ae42fa2771a325f5354c.zip
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
Diffstat (limited to 'app/helpers/custom_fields_helper.rb')
-rw-r--r--app/helpers/custom_fields_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/custom_fields_helper.rb b/app/helpers/custom_fields_helper.rb
index bcc4cfa11..0c5e6635d 100644
--- a/app/helpers/custom_fields_helper.rb
+++ b/app/helpers/custom_fields_helper.rb
@@ -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