diff --git a/ChangeLog b/ChangeLog index bc0c70aac..3cade94e7 100755 --- a/ChangeLog +++ b/ChangeLog @@ -8,6 +8,8 @@ $Source$ 2006-08-04 Marc Delisle * tbl_properties_operations.php, libraries/export/sql.php: bug #1526000, copying table to another db (MYSQL 5.0.24) + * db_details_structure.php: bug #1530574, misaligned HTML + when db_collation is empty 2006-08-03 Sebastian Mendel * libraries/dbi/mysqli.dbi.lib.php PMA_DBI_try_query(): do not force diff --git a/db_details_structure.php b/db_details_structure.php index 6b1049578..878aa5789 100644 --- a/db_details_structure.php +++ b/db_details_structure.php @@ -408,12 +408,14 @@ if (!($cfg['PropertiesNumColumns'] > 1)) { echo ' ' . "\n" . ' ' .$default_engine . '' . "\n"; + // we got a case where $db_collation was empty + echo ' ' . "\n"; if (! empty($db_collation)) { - echo ' ' . "\n" - . ' ' . $db_collation - . ''; + . ''; } + echo ''; } if ($is_show_stats) {