summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2009-07-29 19:05:03 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2009-07-29 19:05:03 +0000
commit6da352dc4769488389b6ca5f8f228336597a7763 (patch)
tree20c3e6396b56d4535efb86fb234d4eee787c78d5 /lib
parentcfd7d07b69e27d7f3cfce569fd073ef35e81d474 (diff)
downloadredmine-6da352dc4769488389b6ca5f8f228336597a7763.tar.gz
redmine-6da352dc4769488389b6ca5f8f228336597a7763.zip
Display all custom fields on issue PDF.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2828 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib')
-rw-r--r--lib/redmine/export/pdf.rb2
1 files changed, 1 insertions, 1 deletions
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)