just a minor htmlchange to show that i am still alive and watching ;-)

in tbl_printview it makes no sense to have a fixed columwidth of 400
for the commentrow: if it is empty you get a halfempty page, even if it is
not, you end up with a table that is wider than the screen. so i removed
this to have the browser decide about the width himsel
This commit is contained in:
Mike Beck
2002-12-02 16:00:40 +00:00
parent f18afc5a3d
commit ea43ddf7e8

View File

@@ -271,7 +271,7 @@ while (list($key, $table) = each($the_tables)) {
echo '&nbsp;</td>' . "\n";
}
if ($cfgRelation['commwork']) {
echo ' <td width="400" class="print">';
echo ' <td class="print">';
$comments = PMA_getComments($db, $table);
if (isset($comments[$field_name])) {
echo htmlspecialchars($comments[$field_name]);
@@ -587,4 +587,4 @@ function printPage()
echo '<br /><br />&nbsp;<input type="button" style="visibility: ; width: 100px; height: 25px" name="print" value="Print" onclick="printPage()">' . "\n";
require('./footer.inc.php3');
?>
?>