From 6da352dc4769488389b6ca5f8f228336597a7763 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Wed, 29 Jul 2009 19:05:03 +0000 Subject: [PATCH] Display all custom fields on issue PDF. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2828 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- lib/redmine/export/pdf.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/redmine/export/pdf.rb b/lib/redmine/export/pdf.rb index 61f3451a8..3bd465494 100644 --- a/lib/redmine/export/pdf.rb +++ b/lib/redmine/export/pdf.rb @@ -219,7 +219,7 @@ module Redmine pdf.Cell(60,5, format_date(issue.due_date),"RB") pdf.Ln - for custom_value in issue.custom_values + for custom_value in issue.custom_field_values pdf.SetFontStyle('B',9) pdf.Cell(35,5, custom_value.custom_field.name + ":","L") pdf.SetFontStyle('',9) -- 2.39.5