##// END OF EJS Templates
PDF: add revision number/id of associated revisions on issue PDF (#8738)....
Toshi MARUYAMA -
r6026:ebdd9c6326d7
parent child
Show More
@@ -356,8 +356,9 module Redmine
356 pdf.Ln
356 pdf.Ln
357 for changeset in issue.changesets
357 for changeset in issue.changesets
358 pdf.SetFontStyle('B',8)
358 pdf.SetFontStyle('B',8)
359 pdf.RDMCell(190,5,
359 csstr = "#{l(:label_revision)} #{changeset.format_identifier} - "
360 format_time(changeset.committed_on) + " - " + changeset.author.to_s)
360 csstr += format_time(changeset.committed_on) + " - " + changeset.author.to_s
361 pdf.RDMCell(190, 5, csstr)
361 pdf.Ln
362 pdf.Ln
362 unless changeset.comments.blank?
363 unless changeset.comments.blank?
363 pdf.SetFontStyle('',8)
364 pdf.SetFontStyle('',8)
General Comments 0
You need to be logged in to leave comments. Login now