From: Jean-Philippe Lang Date: Thu, 13 Nov 2008 16:39:50 +0000 (+0000) Subject: Fixes #2171: issue pdf export broken by r2006. X-Git-Tag: 0.8.0-RC1~67 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=243027e63a5f3e06f48aeffd1cfb3505a17efe98;p=redmine.git Fixes #2171: issue pdf export broken by r2006. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2030 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/views/issues/show.rfpdf b/app/views/issues/show.rfpdf index 5926ba89d..00dc3d200 100644 --- a/app/views/issues/show.rfpdf +++ b/app/views/issues/show.rfpdf @@ -79,7 +79,7 @@ pdf.Ln for changeset in @issue.changesets pdf.SetFontStyle('B',8) - pdf.Cell(190,5, format_time(changeset.committed_on) + " - " + changeset.author) + pdf.Cell(190,5, format_time(changeset.committed_on) + " - " + changeset.author.to_s) pdf.Ln unless changeset.comments.blank? pdf.SetFontStyle('',8)