indicate on the Sum line that storage type and collation are the default values

This commit is contained in:
Marc Delisle
2006-05-19 16:34:07 +00:00
parent 6215a6d94a
commit febe99bbca

View File

@@ -404,12 +404,14 @@ if ($cfg['ShowStats']) {
<th class="value"><?php echo PMA_formatNumber($sum_entries, 0); ?></th> <th class="value"><?php echo PMA_formatNumber($sum_entries, 0); ?></th>
<?php <?php
if (!($cfg['PropertiesNumColumns'] > 1)) { if (!($cfg['PropertiesNumColumns'] > 1)) {
echo ' <th align="center">' $default_engine = PMA_DBI_get_default_engine();
.PMA_DBI_get_default_engine() . '</th>' . "\n"; echo ' <th align="center">' . "\n"
. ' <dfn title="'
. sprintf($strDefaultEngine, $default_engine) . '">' .$default_engine . '</th>' . "\n";
if (! empty($db_collation)) { if (! empty($db_collation)) {
echo ' <th align="center">' . "\n" echo ' <th align="center">' . "\n"
. ' <dfn title="' . ' <dfn title="'
. PMA_getCollationDescr($db_collation) . '">' . $db_collation . PMA_getCollationDescr($db_collation) . ' (' . $strDefault . ')">' . $db_collation
. '</dfn></th>'; . '</dfn></th>';
} }
} }