Better fix against bug #571409

This commit is contained in:
Alexander M. Turek
2002-07-15 21:07:35 +00:00
parent c537c01580
commit 85e43e362f
2 changed files with 5 additions and 5 deletions

View File

@@ -9,6 +9,7 @@ $Source$
* libraries/config_import.lib.php3: * libraries/config_import.lib.php3:
- Removed a comment and - Removed a comment and
- Changed the default value for $cfg['AllowAnywhereRecoding'] into FALSE. - Changed the default value for $cfg['AllowAnywhereRecoding'] into FALSE.
* header.inc.php3: Better fix against bug #571409, thanks to Lo<4C>c.
2002-07-15 Marc Delisle <lem9@users.sourceforge.net> 2002-07-15 Marc Delisle <lem9@users.sourceforge.net>
* db_details_export.php3, db_details_links.php3, Documentation.html, * db_details_export.php3, db_details_links.php3, Documentation.html,
@@ -20,7 +21,7 @@ $Source$
* libraries/charset_conversion.lib.php3: remove the "@" before dl() * libraries/charset_conversion.lib.php3: remove the "@" before dl()
because multithreaded servers don't support dl(), and we want because multithreaded servers don't support dl(), and we want
to see the error message, thanks to /Leblanc to see the error message, thanks to /Leblanc
* header.inc.php3: js error with OmniWeb, thanks to Loic * header.inc.php3: js error with OmniWeb, thanks to Lo<EFBFBD>c
2002-07-14 Marc Delisle <lem9@users.sourceforge.net> 2002-07-14 Marc Delisle <lem9@users.sourceforge.net>
* Documentation.html, db_details_exports.php3, tbl_properties_export.php3: * Documentation.html, db_details_exports.php3, tbl_properties_export.php3:

View File

@@ -5,11 +5,10 @@
/** /**
* Gets a core script and starts output buffering work * Gets a core script and starts output buffering work
*/ */
if (function_exists('require_once')) { if (!defined('PMA_COMMON_LIB_INCLUDED')) {
require_once('./libraries/common.lib.php3');
require_once('./libraries/ob.lib.php3');
} else {
require('./libraries/common.lib.php3'); require('./libraries/common.lib.php3');
}
if (!defined('PMA_OB_LIB_INCLUDED')) {
require('./libraries/ob.lib.php3'); require('./libraries/ob.lib.php3');
} }
if ($GLOBALS['cfg']['OBGzip']) { if ($GLOBALS['cfg']['OBGzip']) {