From d0f9269fed17e201ee80763b778600e2557e1c7f Mon Sep 17 00:00:00 2001 From: vfilippov Date: Fri, 23 Oct 2009 17:06:51 +0000 Subject: [PATCH] Bug 55876 ... git-svn-id: svn://svn.office.custis.ru/3rdparty/bugzilla.org/trunk@498 6955db30-a419-402b-8a0d-67ecbb4d7f56 --- Bugzilla/Util.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Bugzilla/Util.pm b/Bugzilla/Util.pm index 1ad5ebd01..ac64c1a59 100644 --- a/Bugzilla/Util.pm +++ b/Bugzilla/Util.pm @@ -379,7 +379,7 @@ sub wrap_comment } else { - $wrappedcomment .= $table->render . "\n"; + $wrappedcomment .= "\n" . $table->render . "\n\n"; $table = undef; $tablen = undef; } @@ -414,7 +414,7 @@ sub wrap_comment $wrappedcomment .= "\n"; } } - $wrappedcomment .= $table->render if $table; + $wrappedcomment .= "\n" . $table->render . "\n" if $table; chomp $wrappedcomment; return $wrappedcomment; }