diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-01-29 22:01:40 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-01-29 22:01:40 +0000 |
commit | 79b12c73d9acd43f53918d23a9f3d94a516632b5 (patch) | |
tree | fd96e989ce48fdf294b9655be2acfdf62b704bd8 /lib/redmine/export | |
parent | 0cd62a3c7776a311b0776899bf4734cd7f4e583a (diff) | |
download | redmine-79b12c73d9acd43f53918d23a9f3d94a516632b5.tar.gz redmine-79b12c73d9acd43f53918d23a9f3d94a516632b5.zip |
Display of multi custom fields.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8726 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib/redmine/export')
-rw-r--r-- | lib/redmine/export/pdf.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/redmine/export/pdf.rb b/lib/redmine/export/pdf.rb index 8ae7575de..b9efd1a33 100644 --- a/lib/redmine/export/pdf.rb +++ b/lib/redmine/export/pdf.rb @@ -214,7 +214,7 @@ module Redmine # fetch all the row values col_values = query.columns.collect do |column| s = if column.is_a?(QueryCustomFieldColumn) - cv = issue.custom_values.detect {|v| v.custom_field_id == column.custom_field.id} + cv = issue.custom_field_values.detect {|v| v.custom_field_id == column.custom_field.id} show_value(cv) else value = issue.send(column.name) |