From 1b187c909da32957ea046b85539c0da4c4982605 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Thu, 16 Sep 2010 15:35:36 +0200 Subject: [PATCH] rfe #1105678 [interface] Drop page-break-before as it is useless for smaller tables. In real world you have quite a lot of tables with just few fields and for these page-break-before is really a bad idea. --- ChangeLog | 2 ++ db_datadict.php | 6 +----- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index a11c8294c..9c36632c3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -113,6 +113,8 @@ - bug #3056610 [interface] Removed modification options for information_schema + patch #3055886 [config] Add Left frame table filter visibility config option, thanks to eesau - [core] Force generating of new session on login +- rfe #1105678 [interface] Drop page-break-before as it is useless for smaller + tables. 3.3.8.0 (not yet released) - bug #3059311 [import] BIGINT field type added to table analysis diff --git a/db_datadict.php b/db_datadict.php index 7666b567a..b760a27fc 100644 --- a/db_datadict.php +++ b/db_datadict.php @@ -63,11 +63,7 @@ while ($row = PMA_DBI_fetch_assoc($rowset)) { $table = $row[$myfieldname]; $comments = PMA_getComments($db, $table); - if ($count != 0) { - echo '
' . "\n"; - } else { - echo '
' . "\n"; - } + echo '
' . "\n"; echo '

' . $table . '

' . "\n";