From f0404ab93312b2893bb8d6dea8b46bb124449b86 Mon Sep 17 00:00:00 2001 From: Geert Lund Date: Mon, 1 Oct 2001 16:33:38 +0000 Subject: [PATCH] db_stats.php3, fixed error where server and language setting wasen't in link, thanx to Joshua Nye --- ChangeLog | 4 ++++ db_stats.php3 | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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";