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>2005-11-18 15:50:49 +0300
committerSebastian Mendel <cybot_tm@users.sourceforge.net>2005-11-18 15:50:49 +0300
commitfcf387bc70b3c1975ac3df8c878bbb346b4ada43 (patch)
tree03bc79e005696d79646f3694a01e88e524a4aae2 /querywindow.php
parent7a56c56c4b19fe90df56b60868d286d9e66ad1bf (diff)
common.lib.php should REALLY REALLY and ALWAYS be the first include
Diffstat (limited to 'querywindow.php')
-rw-r--r--querywindow.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/querywindow.php b/querywindow.php
index 6411cb653f..49c6248b73 100644
--- a/querywindow.php
+++ b/querywindow.php
@@ -2,12 +2,12 @@
/* $Id$ */
// vim: expandtab sw=4 ts=4 sts=4:
+require_once('./libraries/common.lib.php');
/**
* Gets the variables sent to this script, retains the db name that may have
* been defined as startup option and include a core library
*/
-require_once('./libraries/grab_globals.lib.php');
if (!empty($db)) {
$db_start = $db;
}
@@ -16,7 +16,6 @@ if (!empty($db)) {
/**
* Gets a core script and starts output buffering work
*/
-require_once('./libraries/common.lib.php');
require_once './libraries/sql_query_form.lib.php';
require_once('./libraries/ob.lib.php');
if ( $GLOBALS['cfg']['OBGzip'] ) {