From ee8b5f07ce23f28f0c5d27328462909e01eaaf0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Chapeaux?= Date: Fri, 23 Nov 2001 19:14:30 +0000 Subject: [PATCH] This frame wasn't taking into account the output buffering feature! --- left.php3 | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/left.php3 b/left.php3 index 8c09e5df6..2dc7f1f83 100755 --- a/left.php3 +++ b/left.php3 @@ -10,7 +10,19 @@ require('./libraries/grab_globals.lib.php3'); if (!empty($db)) { $db_start = $db; } + + +/** + * Gets a core script and starts output buffering work + */ require('./libraries/common.lib.php3'); +require('./libraries/ob.lib.php3'); +if ($cfgOBGzip) { + $ob_mode = PMA_outBufferModeGet(); + if ($ob_mode) { + PMA_outBufferPre($ob_mode); + } +} /** @@ -317,3 +329,24 @@ echo "\n"; + +