bug #1530574, misaligned HTML when db_collation is empty
This commit is contained in:
@@ -8,6 +8,8 @@ $Source$
|
|||||||
2006-08-04 Marc Delisle <lem9@users.sourceforge.net>
|
2006-08-04 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
* tbl_properties_operations.php, libraries/export/sql.php:
|
* tbl_properties_operations.php, libraries/export/sql.php:
|
||||||
bug #1526000, copying table to another db (MYSQL 5.0.24)
|
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 <cybot_tm@users.sourceforge.net>
|
2006-08-03 Sebastian Mendel <cybot_tm@users.sourceforge.net>
|
||||||
* libraries/dbi/mysqli.dbi.lib.php PMA_DBI_try_query(): do not force
|
* libraries/dbi/mysqli.dbi.lib.php PMA_DBI_try_query(): do not force
|
||||||
|
@@ -408,12 +408,14 @@ if (!($cfg['PropertiesNumColumns'] > 1)) {
|
|||||||
echo ' <th align="center">' . "\n"
|
echo ' <th align="center">' . "\n"
|
||||||
. ' <dfn title="'
|
. ' <dfn title="'
|
||||||
. sprintf($strDefaultEngine, $default_engine) . '">' .$default_engine . '</th>' . "\n";
|
. sprintf($strDefaultEngine, $default_engine) . '">' .$default_engine . '</th>' . "\n";
|
||||||
|
// we got a case where $db_collation was empty
|
||||||
|
echo ' <th align="center">' . "\n";
|
||||||
if (! empty($db_collation)) {
|
if (! empty($db_collation)) {
|
||||||
echo ' <th align="center">' . "\n"
|
echo ' <dfn title="'
|
||||||
. ' <dfn title="'
|
|
||||||
. PMA_getCollationDescr($db_collation) . ' (' . $strDefault . ')">' . $db_collation
|
. PMA_getCollationDescr($db_collation) . ' (' . $strDefault . ')">' . $db_collation
|
||||||
. '</dfn></th>';
|
. '</dfn>';
|
||||||
}
|
}
|
||||||
|
echo '</th>';
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($is_show_stats) {
|
if ($is_show_stats) {
|
||||||
|
Reference in New Issue
Block a user