diff options
Diffstat (limited to 'app/helpers/issues_helper.rb')
-rw-r--r-- | app/helpers/issues_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/issues_helper.rb b/app/helpers/issues_helper.rb index 76eded3d5..f96a3a783 100644 --- a/app/helpers/issues_helper.rb +++ b/app/helpers/issues_helper.rb @@ -326,7 +326,7 @@ module IssuesHelper items = [] %w(author status priority assigned_to category fixed_version start_date due_date).each do |attribute| if issue.disabled_core_fields.grep(/^#{attribute}(_id)?$/).empty? - attr_value = "#{issue.send attribute}" + attr_value = (issue.send attribute).to_s next if attr_value.blank? if html items << content_tag('strong', "#{l("field_#{attribute}")}: ") + attr_value |