From 243027e63a5f3e06f48aeffd1cfb3505a17efe98 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Thu, 13 Nov 2008 16:39:50 +0000 Subject: [PATCH] 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 --- app/views/issues/show.rfpdf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.39.5