Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Mendel <cybot_tm@users.sourceforge.net>2006-09-20 15:15:56 +0400
committerSebastian Mendel <cybot_tm@users.sourceforge.net>2006-09-20 15:15:56 +0400
commit45b04ab15d4948a6798bb2c792238b8f01a34c6f (patch)
treeceb3d2aa2f52018849220f602f8f25e9fcd8c742 /querywindow.php
parent9ec978a4a9967ad36cf2f00e687372ca12aef409 (diff)
replaced $dblist with new PMA_List_Database class
Diffstat (limited to 'querywindow.php')
-rw-r--r--querywindow.php11
1 files changed, 0 insertions, 11 deletions
diff --git a/querywindow.php b/querywindow.php
index 5140ab1c46..25b2ccb94d 100644
--- a/querywindow.php
+++ b/querywindow.php
@@ -35,17 +35,6 @@ $cfgRelation = PMA_getRelationsParam();
$_sql_history = array();
$_input_query_history = array();
-/**
- * Get the list and number of available databases.
- * Skipped if no server selected: in this case no database should be displayed
- * before the user choose among available ones at the welcome screen.
- */
-if ($server > 0) {
- PMA_availableDatabases(); // this function is defined in "common.lib.php"
-} else {
- $num_dbs = 0;
-}
-
// garvin: For re-usability, moved http-headers and stylesheets
// to a seperate file. It can now be included by libraries/header.inc.php,
// querywindow.php.