From: Toshi MARUYAMA Date: Tue, 11 Sep 2012 02:16:32 +0000 (+0000) Subject: gantt: use content_tag instead of html tag at subject for project X-Git-Tag: 2.1.0~13 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=bcd8ce2de2b5c234777674f72247296ade97852f;p=redmine.git gantt: use content_tag instead of html tag at subject for project git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10359 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/lib/redmine/helpers/gantt.rb b/lib/redmine/helpers/gantt.rb index 510da8735..763342345 100644 --- a/lib/redmine/helpers/gantt.rb +++ b/lib/redmine/helpers/gantt.rb @@ -245,9 +245,12 @@ module Redmine def subject_for_project(project, options) case options[:format] when :html - subject = "".html_safe - subject << view.link_to_project(project).html_safe - subject << ''.html_safe + html_class = "" + html_class << 'icon icon-projects ' + html_class << (project.overdue? ? 'project-overdue' : '') + s = view.link_to_project(project).html_safe + subject = view.content_tag(:span, s, + :class => html_class).html_safe html_subject(options, subject, :css => "project-name") when :image image_subject(options, project.name)