summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-12-06 03:44:25 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-12-06 03:44:25 +0000
commit62fb6e0f4b6ac8590d21483cb08b55ab551cb6b0 (patch)
treea986aed1e87c533a55372a44a7d9791ed933dab9 /lib
parent5ca558f19177472cd17f0b5e72e649845c301ae7 (diff)
downloadredmine-62fb6e0f4b6ac8590d21483cb08b55ab551cb6b0.tar.gz
redmine-62fb6e0f4b6ac8590d21483cb08b55ab551cb6b0.zip
pdf: move note number to the head of line for single issue's PDF (#9720)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8099 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib')
-rw-r--r--lib/redmine/export/pdf.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/redmine/export/pdf.rb b/lib/redmine/export/pdf.rb
index be4f4df94..1da58855b 100644
--- a/lib/redmine/export/pdf.rb
+++ b/lib/redmine/export/pdf.rb
@@ -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