summaryrefslogtreecommitdiffstats
path: root/lib/redmine/export/pdf.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/redmine/export/pdf.rb')
-rw-r--r--lib/redmine/export/pdf.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/redmine/export/pdf.rb b/lib/redmine/export/pdf.rb
index 1da58855b..8ae7575de 100644
--- a/lib/redmine/export/pdf.rb
+++ b/lib/redmine/export/pdf.rb
@@ -464,8 +464,8 @@ module Redmine
" - " + journal.user.name)
pdf.Ln
pdf.SetFontStyle('I',8)
- for detail in journal.details
- pdf.RDMMultiCell(190,5, "- " + show_detail(detail, true))
+ details_to_strings(journal.details, true).each do |string|
+ pdf.RDMMultiCell(190,5, "- " + string)
end
if journal.notes?
pdf.Ln unless journal.details.empty?