add missing closing tag for <div> in showBody

This commit is contained in:
Klaus Leithoff 2012-02-07 11:53:53 +00:00
parent 93065f226a
commit 550ad3a12a

View File

@ -712,9 +712,10 @@ blockquote[type=cite] {
color: blue;
}
</style>
<div style="height:100%;width:100%; background-color:white; padding:0px; margin:0px;"><table width="100%" style="table-layout:fixed"><tr><td class="td_display">';
<div style="height:100%;width:100%; background-color:white; padding:0px; margin:0px;">
<table width="100%" style="table-layout:fixed"><tr><td class="td_display">';
$EndBody = '</td></tr></table>';
$EndBody = '</td></tr></table></div>';
$EndBody .= "</body></html>";
if ($print) {
print $BeginBody. $body .$EndBody;