diff options
author | Go MAEDA <maeda@farend.jp> | 2020-03-24 12:16:06 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2020-03-24 12:16:06 +0000 |
commit | 1473996f92fd8e77af4736353bcb0190e79b144d (patch) | |
tree | c64f5c736d8bbb54af95a33816a382cc6607a497 /lib | |
parent | 64abc4bd85489db63943a13eb6f418cb53220776 (diff) | |
download | redmine-1473996f92fd8e77af4736353bcb0190e79b144d.tar.gz redmine-1473996f92fd8e77af4736353bcb0190e79b144d.zip |
Export to PDF fails when subject of parent task is included in issue list (#33103).
Patch by Marius BALTEANU and Yuichi HARADA.
git-svn-id: http://svn.redmine.org/redmine/trunk@19611 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib')
-rw-r--r-- | lib/redmine/export/pdf/issues_pdf_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/redmine/export/pdf/issues_pdf_helper.rb b/lib/redmine/export/pdf/issues_pdf_helper.rb index 2f73e52a4..b49691695 100644 --- a/lib/redmine/export/pdf/issues_pdf_helper.rb +++ b/lib/redmine/export/pdf/issues_pdf_helper.rb @@ -379,7 +379,7 @@ module Redmine cv = issue.visible_custom_field_values.detect {|v| v.custom_field_id == column.custom_field.id} show_value(cv, false) else - value = issue.send(column.name) + value = column.value_object(issue) case column.name when :subject value = " " * level + value |