From ea43ddf7e81867bda32f528a74842cbe18869c9f Mon Sep 17 00:00:00 2001 From: Mike Beck Date: Mon, 2 Dec 2002 16:00:40 +0000 Subject: [PATCH] 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 --- tbl_printview.php3 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tbl_printview.php3 b/tbl_printview.php3 index 53e40e062..839ea328f 100755 --- a/tbl_printview.php3 +++ b/tbl_printview.php3 @@ -271,7 +271,7 @@ while (list($key, $table) = each($the_tables)) { echo ' ' . "\n"; } if ($cfgRelation['commwork']) { - echo ' '; + echo ' '; $comments = PMA_getComments($db, $table); if (isset($comments[$field_name])) { echo htmlspecialchars($comments[$field_name]); @@ -587,4 +587,4 @@ function printPage() echo '

 ' . "\n"; require('./footer.inc.php3'); -?> +?> \ No newline at end of file