diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2010-11-11 13:44:23 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2010-11-11 13:44:23 +0000 |
commit | aa84e6c1794e00973375b177e8761bff64bd4140 (patch) | |
tree | 177f70aa9db753d44689e49a4550ce7685dbb322 /lib | |
parent | fa3d71bed9520de811998a83c33b6ce3b9ffed00 (diff) | |
download | redmine-aa84e6c1794e00973375b177e8761bff64bd4140.tar.gz redmine-aa84e6c1794e00973375b177e8761bff64bd4140.zip |
Removes duplicate issue subject on gantt (#6763).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4392 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib')
-rw-r--r-- | lib/redmine/helpers/gantt.rb | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/redmine/helpers/gantt.rb b/lib/redmine/helpers/gantt.rb index 0f86648e7..ea7f1417a 100644 --- a/lib/redmine/helpers/gantt.rb +++ b/lib/redmine/helpers/gantt.rb @@ -536,8 +536,6 @@ module Redmine end output << "<span class='#{css_classes.join(' ')}'>" output << view.link_to_issue(issue) - output << ":" - output << h(issue.subject) output << '</span>' else ActiveRecord::Base.logger.debug "Gantt#subject_for_issue was not given an issue" |