Merged r6146 from trunk.
PDF: add revision number/id of associated revisions on issue PDF. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/1.2-stable@6153 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
d15912eb6a
commit
3de4afe53a
|
@ -350,8 +350,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)
|
||||
|
|
Loading…
Reference in New Issue