For Lo�c: bug #571409

This commit is contained in:
Alexander M. Turek
2002-08-23 10:22:54 +00:00
parent 0bed021814
commit 11b4950345
4 changed files with 27 additions and 8 deletions

View File

@@ -7,6 +7,9 @@ $Source$
2002-08-23 Lo<4C>c Chapeaux <lolo@phpheaven.net> 2002-08-23 Lo<4C>c Chapeaux <lolo@phpheaven.net>
* left.php3, lines 169-181: XHTML optimizations. * left.php3, lines 169-181: XHTML optimizations.
* db_details_common.php3, tbl_properties_common.php3,
libraries/sqlparser.lib.php3: Fixed bug #571409 (it doesn't work properly
with Zend Accelerator).
2002-08-23 Alexander M. Turek <rabus@users.sourceforge.net> 2002-08-23 Alexander M. Turek <rabus@users.sourceforge.net>
* libraries/charset_conversion.lib.php3: Don't let php display an error * libraries/charset_conversion.lib.php3: Don't let php display an error

View File

@@ -5,9 +5,15 @@
/** /**
* Gets some core libraries * Gets some core libraries
*/ */
require('./libraries/grab_globals.lib.php3'); if (!defined('PMA_GRAB_GLOBALS_INCLUDED')) {
require('./libraries/common.lib.php3'); include('./libraries/grab_globals.lib.php3');
require('./libraries/bookmark.lib.php3'); }
if (!defined('PMA_COMMON_LIB_INCLUDED')) {
include('./libraries/common.lib.php3');
}
if (!defined('PMA_BOOKMARK_LIB_INCLUDED')) {
include('./libraries/bookmark.lib.php3');
}
/** /**

View File

@@ -35,12 +35,16 @@ if (!defined('PMA_SQP_LIB_INCLUDED')) {
/** /**
* Include the string library as we use it heavily * Include the string library as we use it heavily
*/ */
include('./libraries/string.lib.php3'); if (!defined('PMA_STR_LIB_INCLUDED')) {
include('./libraries/string.lib.php3');
}
/** /**
* Include data for the SQL Parser * Include data for the SQL Parser
*/ */
include('./libraries/sqlparser.data.php3'); if (!defined('PMA_SQP_DATA_INCLUDED')) {
include('./libraries/sqlparser.data.php3');
}
if (!defined('DEBUG_TIMING')) { if (!defined('DEBUG_TIMING')) {
function PMA_SQP_arrayAdd(&$arr, $type, $data, &$arrsize) function PMA_SQP_arrayAdd(&$arr, $type, $data, &$arrsize)

View File

@@ -5,9 +5,15 @@
/** /**
* Gets some core libraries * Gets some core libraries
*/ */
require('./libraries/grab_globals.lib.php3'); if (!defined('PMA_GRAB_GLOBALS_INCLUDED')) {
require('./libraries/common.lib.php3'); include('./libraries/grab_globals.lib.php3');
require('./libraries/bookmark.lib.php3'); }
if (!defined('PMA_COMMON_LIB_INCLUDED')) {
include('./libraries/common.lib.php3');
}
if (!defined('PMA_BOOKMARK_LIB_INCLUDED')) {
include('./libraries/bookmark.lib.php3');
}
/** /**