diff --git a/ChangeLog b/ChangeLog index 6d865ed38..4d0ffb691 100755 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,9 @@ phpMyAdmin - Changelog $Id$ $Source$ +2003-02-09 Alexander M. Turek + * server_databases.php3: Bugfixes & interface cosmetic. + 2003-02-08 Alexander M. Turek * config.inc.php3, lang/add_message.sh: Typos. * lang/italian.inc.php3: Updates, thanks to Pietro Danesi (danone). diff --git a/server_databases.php3 b/server_databases.php3 index 15d7d562c..06c6a3f85 100644 --- a/server_databases.php3 +++ b/server_databases.php3 @@ -6,6 +6,7 @@ /** * Does the common work */ +$js_to_run = 'functions.js'; require('./server_common.inc.php3'); @@ -104,7 +105,11 @@ usort($statistics, 'PMA_dbCmp'); * Displays the page */ if (count($statistics) > 0) { - echo '
' . "\n" + echo '' . "\n" + . PMA_generate_common_hidden_inputs('', '', 1) + . ' ' . "\n" + . ' ' . "\n" + . ' ' . "\n" . ' ' . "\n" . ' ' . "\n" . ' ' . "\n" @@ -179,7 +184,7 @@ if (count($statistics) > 0) { $total_calc['tot_sz'] += $current['tot_sz']; echo ' ' . "\n" . ' ' . "\n" . ' ' . "\n" . ' ' . "\n"; } - echo '
 
' . "\n" - . ' ' . "\n" + . ' ' . "\n" . ' ' . "\n" . ' ' . "\n" @@ -254,28 +259,44 @@ if (count($statistics) > 0) { . '  

' . "\n"; + $common_url_query = PMA_generate_common_url() . '&sort_by=' . $sort_by . '&sort_order=' . $sort_order . '&dbstats=' . (empty($dbstats) ? '10' : '3'); + echo ' ' . "\n" + . ' ' . "\n" + . ' ' . $strWithChecked . '' . "\n" + . ' ' . "\n" + . ' ' . $strCheckAll + . ' ' . "\n" + . '  / ' . "\n" + . ' ' . "\n" + . ' ' . $strUncheckAll + . ' ' . "\n" + . ' ' . "\n" + . ' ' . "\n" + . ' ' . "\n" + . '
' . "\n" + . '' . "\n"; } else { echo $strNoDatabases . "\n"; }