From febe99bbcafa50de89ffc5e0ca4d1c38ca39723e Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 19 May 2006 16:34:07 +0000 Subject: [PATCH] indicate on the Sum line that storage type and collation are the default values --- db_details_structure.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/db_details_structure.php b/db_details_structure.php index 596a953971..5deebe4715 100644 --- a/db_details_structure.php +++ b/db_details_structure.php @@ -404,12 +404,14 @@ if ($cfg['ShowStats']) { 1)) { - echo ' ' - .PMA_DBI_get_default_engine() . '' . "\n"; + $default_engine = PMA_DBI_get_default_engine(); + echo ' ' . "\n" + . ' ' .$default_engine . '' . "\n"; if (! empty($db_collation)) { echo ' ' . "\n" . ' ' . $db_collation + . PMA_getCollationDescr($db_collation) . ' (' . $strDefault . ')">' . $db_collation . ''; } } -- 2.11.4.GIT