PHP3 compatibility

This commit is contained in:
Marc Delisle
2001-08-04 15:50:30 +00:00
parent 7eac26503d
commit 885ddb96cd
2 changed files with 4 additions and 1 deletions

View File

@@ -5,6 +5,9 @@ phpMyAdmin - Changelog
$Id$
$Source$
2001-08-04 Marc Delisle <lem9@users.sourceforge.net>
* ob_lib.inc.php3, oops: must be PHP3 compatible
2001-08-04 Steve Alberty <alberty@neptunlabs.de>
* lib.inc.php3: fixed #444017 (thanks anonymous)
* db_details.php3, tbl_replace.php3, sql.php3, user_details.php3

View File

@@ -31,7 +31,7 @@ if (!defined('__OB_LIB_INC__')) {
*
* (Patch by Garth Gillespie, modified by Marc Delisle)
*/
if (@ini_get('output_handler') == 'ob_gzhandler') {
if (@get_cfg_var('output_handler') == 'ob_gzhandler') {
$mode = 0;
}
// End patch