From a62629c9d0f03c64e2fe234cf82e55a47ee4aa0a Mon Sep 17 00:00:00 2001 From: "Alexander M. Turek" Date: Mon, 26 Aug 2002 08:30:32 +0000 Subject: [PATCH] =?UTF-8?q?For=20L=EF=BF=BDc:=20Zend=20Accelerator=20bug?= =?UTF-8?q?=20(#571409)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ChangeLog | 3 +++ tbl_indexes.php3 | 8 ++++++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 32b79d65b..62ddb6853 100755 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,9 @@ phpMyAdmin - Changelog $Id$ $Source$ +2002-08-26 Loïc Chapeaux + * tbl_indexes.php3: Another fix against the Zend Accelerator bug (#571409). + 2002-08-26 Alexander M. Turek * lang/japanese-*.inc.php3: Updates, thanks again to Yukihiro Kawada. * lang/german-*.inc.php3: Updates. diff --git a/tbl_indexes.php3 b/tbl_indexes.php3 index e2f14f03e..845126e86 100644 --- a/tbl_indexes.php3 +++ b/tbl_indexes.php3 @@ -5,8 +5,12 @@ /** * Gets some core libraries */ -require('./libraries/grab_globals.lib.php3'); -require('./libraries/common.lib.php3'); +if (!defined('PMA_GRAB_GLOBALS_INCLUDED')) { + include('./libraries/grab_globals.lib.php3'); +} +if (!defined('PMA_COMMON_LIB_INCLUDED')) { + include('./libraries/common.lib.php3'); +} /**