]> source.dussan.org Git - redmine.git/commitdiff
gantt: use content_tag instead of html tag at helper subject_for_version method
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Tue, 11 Sep 2012 00:09:01 +0000 (00:09 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Tue, 11 Sep 2012 00:09:01 +0000 (00:09 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10352 e93f8b46-1217-0410-a6f0-8f06a7374b81

lib/redmine/helpers/gantt.rb

index d73a92ec06faf3176eeaa732b3fa833e84edcb19..912e7b044a3d26dc0bfb06a959933cdac1819f14 100644 (file)
@@ -281,9 +281,13 @@ module Redmine
       def subject_for_version(version, options)
         case options[:format]
         when :html
-          subject = "<span class='icon icon-package #{version.behind_schedule? ? 'version-behind-schedule' : ''} #{version.overdue? ? 'version-overdue' : ''}'>".html_safe
-          subject << view.link_to_version(version).html_safe
-          subject << '</span>'.html_safe
+          html_class = ""
+          html_class << 'icon icon-package '
+          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")
         when :image
           image_subject(options, version.to_s_with_project)