From 885ddb96cd6ba7297bdc7e181dc5c757c8e168ac Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Sat, 4 Aug 2001 15:50:30 +0000 Subject: [PATCH] PHP3 compatibility --- ChangeLog | 3 +++ ob_lib.inc.php3 | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 5fdfbdecc..7adc93b97 100755 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,9 @@ phpMyAdmin - Changelog $Id$ $Source$ +2001-08-04 Marc Delisle + * ob_lib.inc.php3, oops: must be PHP3 compatible + 2001-08-04 Steve Alberty * lib.inc.php3: fixed #444017 (thanks anonymous) * db_details.php3, tbl_replace.php3, sql.php3, user_details.php3 diff --git a/ob_lib.inc.php3 b/ob_lib.inc.php3 index dfcbaa153..77876de08 100644 --- a/ob_lib.inc.php3 +++ b/ob_lib.inc.php3 @@ -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