diff --git a/lib/redmine/export/pdf.rb b/lib/redmine/export/pdf.rb index 2c446e38e..d61cb3d4c 100644 --- a/lib/redmine/export/pdf.rb +++ b/lib/redmine/export/pdf.rb @@ -356,8 +356,9 @@ module Redmine pdf.Ln for changeset in issue.changesets pdf.SetFontStyle('B',8) - pdf.RDMCell(190,5, - format_time(changeset.committed_on) + " - " + changeset.author.to_s) + csstr = "#{l(:label_revision)} #{changeset.format_identifier} - " + csstr += format_time(changeset.committed_on) + " - " + changeset.author.to_s + pdf.RDMCell(190, 5, csstr) pdf.Ln unless changeset.comments.blank? pdf.SetFontStyle('',8)