From a481a05ef892da91df7c7a840aa5e6f1242e2884 Mon Sep 17 00:00:00 2001 From: "Alexander M. Turek" Date: Fri, 25 Jun 2004 07:51:42 +0000 Subject: [PATCH] Undefined index --- ChangeLog | 3 +++ queryframe.php | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index e58199440..6e81d6947 100755 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,9 @@ phpMyAdmin - Changelog $Id$ $Source$ +2004-06-25 Alexander M. Turek + * queryframe.php: Undefined index errors. + 2004-06-24 Marc Delisle * left.php, config.inc.php, Documentation.html, libraries/config_import.lib.php + common.lib.php, all colors.inc.php: diff --git a/queryframe.php b/queryframe.php index acb8d6ca3..023d65ab8 100644 --- a/queryframe.php +++ b/queryframe.php @@ -7,7 +7,6 @@ * been defined as startup option and include a core library */ require_once('./libraries/grab_globals.lib.php'); -require_once('./libraries/bookmark.lib.php'); if (!empty($db)) { $db_start = $db; } @@ -17,6 +16,7 @@ if (!empty($db)) { * Gets a core script and starts output buffering work */ require_once('./libraries/common.lib.php'); +require_once('./libraries/bookmark.lib.php'); require_once('./libraries/ob.lib.php'); if ($cfg['OBGzip']) { $ob_mode = PMA_outBufferModeGet();