db_stats.php3, fixed error where server and language setting wasen't in link, thanx to Joshua Nye

This commit is contained in:
Geert Lund
2001-10-01 16:33:38 +00:00
parent 5de539f630
commit f0404ab933
2 changed files with 5 additions and 1 deletions

View File

@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
$Id$ $Id$
$Source$ $Source$
2001-10-01 Geert Lund <glund@silversoft.dk>
* db_stats.php3, line 261: fixed error where server and language setting
wasen't in link, thanx to Joshua Nye <josh at boxcarmedia.com>
2001-09-30 Lo<4C>c Chapeaux <lolo@phpheaven.net> 2001-09-30 Lo<4C>c Chapeaux <lolo@phpheaven.net>
* libraries/common.lib.php3, lines 489-493: fixed "backslashed backslash" * libraries/common.lib.php3, lines 489-493: fixed "backslashed backslash"
before wildcards problem in databases names. before wildcards problem in databases names.

View File

@@ -258,7 +258,7 @@ if ($num_dbs > 0) {
echo ' <td align="center">' . "\n"; echo ' <td align="center">' . "\n";
echo ' &nbsp;<input type="checkbox" name="selected_db[]" value="' . urlencode($db_name) . '" />&nbsp;' . "\n"; echo ' &nbsp;<input type="checkbox" name="selected_db[]" value="' . urlencode($db_name) . '" />&nbsp;' . "\n";
echo ' </td>' . "\n"; echo ' </td>' . "\n";
echo ' <td>&nbsp;<a href="index.php3?db=' . urlencode($db_name) . '" target="_parent">' . htmlentities($db_name) . '</a>&nbsp;</td>' . "\n"; echo ' <td>&nbsp;<a href="index.php3?lang=' . $lang . '&server=' . $server . '&db=' . urlencode($db_name) . '" target="_parent">' . htmlentities($db_name) . '</a>&nbsp;</td>' . "\n";
echo ' <td align="right">&nbsp;' . $dbs_array[$db_name][0] . '&nbsp;</td>' . "\n"; echo ' <td align="right">&nbsp;' . $dbs_array[$db_name][0] . '&nbsp;</td>' . "\n";
echo ' <td align="right">&nbsp;' . $data_size . ' ' . $data_unit . '&nbsp;</td>' . "\n"; echo ' <td align="right">&nbsp;' . $data_size . ' ' . $data_unit . '&nbsp;</td>' . "\n";
echo ' <td align="right">&nbsp;' . $idx_size . ' ' . $idx_unit . '&nbsp;</td>' . "\n"; echo ' <td align="right">&nbsp;' . $idx_size . ' ' . $idx_unit . '&nbsp;</td>' . "\n";