Bug 55876

<nowrap> ...


git-svn-id: svn://svn.office.custis.ru/3rdparty/bugzilla.org/trunk@498 6955db30-a419-402b-8a0d-67ecbb4d7f56
master
vfilippov 2009-10-23 17:06:51 +00:00
parent d313ea95ba
commit d0f9269fed
1 changed files with 2 additions and 2 deletions

View File

@ -379,7 +379,7 @@ sub wrap_comment
} }
else else
{ {
$wrappedcomment .= $table->render . "\n"; $wrappedcomment .= "<nowrap>\n" . $table->render . "\n<nowrap>\n";
$table = undef; $table = undef;
$tablen = undef; $tablen = undef;
} }
@ -414,7 +414,7 @@ sub wrap_comment
$wrappedcomment .= "\n"; $wrappedcomment .= "\n";
} }
} }
$wrappedcomment .= $table->render if $table; $wrappedcomment .= "<nowrap>\n" . $table->render . "\n<nowrap>" if $table;
chomp $wrappedcomment; chomp $wrappedcomment;
return $wrappedcomment; return $wrappedcomment;
} }