gantt: use content_tag instead of html tag at helper subject_for_version method

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10352 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2012-09-11 00:09:01 +00:00
parent 3bbb2566c8
commit ffb981255c
1 changed files with 7 additions and 3 deletions

View File

@ -281,9 +281,13 @@ module Redmine
def subject_for_version(version, options) def subject_for_version(version, options)
case options[:format] case options[:format]
when :html when :html
subject = "<span class='icon icon-package #{version.behind_schedule? ? 'version-behind-schedule' : ''} #{version.overdue? ? 'version-overdue' : ''}'>".html_safe html_class = ""
subject << view.link_to_version(version).html_safe html_class << 'icon icon-package '
subject << '</span>'.html_safe html_class << (version.behind_schedule? ? 'version-behind-schedule' : '') << " "
html_class << (version.overdue? ? 'version-overdue' : '')
s = view.link_to_version(version).html_safe
subject = view.content_tag(:span, s,
:class => html_class).html_safe
html_subject(options, subject, :css => "version-name") html_subject(options, subject, :css => "version-name")
when :image when :image
image_subject(options, version.to_s_with_project) image_subject(options, version.to_s_with_project)