diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-07-29 10:12:26 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-07-29 10:12:26 +0000 |
commit | c6106543e1c54f7a776a77140717ef6fbd924233 (patch) | |
tree | 872db9eb42187bfb7de4b3a5e0d6be646eb305ed /app/helpers | |
parent | 8ee2ae1846bf7191e9ce56c6cb70429ac2341be7 (diff) | |
download | redmine-c6106543e1c54f7a776a77140717ef6fbd924233.tar.gz redmine-c6106543e1c54f7a776a77140717ef6fbd924233.zip |
html5 compliance.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10110 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/helpers')
-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 ece3f7844..1ba4c4635 100644 --- a/app/helpers/issues_helper.rb +++ b/app/helpers/issues_helper.rb @@ -290,7 +290,7 @@ module IssuesHelper unless no_html label = content_tag('strong', label) old_value = content_tag("i", h(old_value)) if detail.old_value - old_value = content_tag("strike", old_value) if detail.old_value and detail.value.blank? + old_value = content_tag("del", old_value) if detail.old_value and detail.value.blank? if detail.property == 'attachment' && !value.blank? && atta = Attachment.find_by_id(detail.prop_key) # Link to the attachment if it has not been removed value = link_to_attachment(atta, :download => true, :only_path => options[:only_path]) |