diff --git a/redmine/app/views/projects/gantt.rfpdf b/redmine/app/views/projects/gantt.rfpdf index cd412f5e9..545abb483 100644 --- a/redmine/app/views/projects/gantt.rfpdf +++ b/redmine/app/views/projects/gantt.rfpdf @@ -108,7 +108,7 @@ pdf.SetFont('Arial','B',7) @issues.each do |i| pdf.SetY(top) pdf.SetX(15) - pdf.Cell(subject_width-15, 5, i.id.to_s + " " + i.subject.sub(/^(.{30}[^\s]*\s).*$/, '\1 (...)'), "LR") + pdf.Cell(subject_width-15, 5, "#{i.tracker.name} #{i.id}: #{i.subject}".sub(/^(.{30}[^\s]*\s).*$/, '\1 (...)'), "LR") pdf.SetY(top) pdf.SetX(subject_width)