diff --git a/ChangeLog b/ChangeLog index 52f0dfdae..3d75c4440 100755 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,10 @@ phpMyAdmin - Changelog $Id$ $Source$ +2001-10-01 Geert Lund + * db_stats.php3, line 261: fixed error where server and language setting + wasen't in link, thanx to Joshua Nye + 2001-09-30 Loïc Chapeaux * libraries/common.lib.php3, lines 489-493: fixed "backslashed backslash" before wildcards problem in databases names. diff --git a/db_stats.php3 b/db_stats.php3 index 3faef082f..ed3703cea 100644 --- a/db_stats.php3 +++ b/db_stats.php3 @@ -258,7 +258,7 @@ if ($num_dbs > 0) { echo ' ' . "\n"; echo '   ' . "\n"; echo ' ' . "\n"; - echo '  ' . htmlentities($db_name) . ' ' . "\n"; + echo '  ' . htmlentities($db_name) . ' ' . "\n"; echo '  ' . $dbs_array[$db_name][0] . ' ' . "\n"; echo '  ' . $data_size . ' ' . $data_unit . ' ' . "\n"; echo '  ' . $idx_size . ' ' . $idx_unit . ' ' . "\n";