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'); +} /**