Merged r8099 from trunk
pdf: move note number to the head of line for single issue's PDF. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/1.3-stable@8100 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
b7d813047b
commit
011d9587a5
|
@ -459,8 +459,9 @@ module Redmine
|
|||
indice = indice + 1
|
||||
pdf.SetFontStyle('B',8)
|
||||
pdf.RDMCell(190,5,
|
||||
format_time(journal.created_on) + " - " +
|
||||
journal.user.name + " #" + indice.to_s )
|
||||
"#" + indice.to_s +
|
||||
" - " + format_time(journal.created_on) +
|
||||
" - " + journal.user.name)
|
||||
pdf.Ln
|
||||
pdf.SetFontStyle('I',8)
|
||||
for detail in journal.details
|
||||
|
|
Loading…
Reference in New Issue