fixed a parse error

This commit is contained in:
Loïc Chapeaux
2002-10-04 13:11:08 +00:00
parent 9c66eba941
commit 2c51f09aee
2 changed files with 2 additions and 1 deletions

View File

@@ -10,6 +10,7 @@ $Source$
conditional statements. conditional statements.
* pdf_schema.php3; libraries/fpdf/fpdf.php3: upgraded to the 1.51 release * pdf_schema.php3; libraries/fpdf/fpdf.php3: upgraded to the 1.51 release
of the FPDF library. of the FPDF library.
* libraries/build_dump.lib.php3: fixed a parse error.
2002-10-03 Marc Delisle <lem9@users.sourceforge.net> 2002-10-03 Marc Delisle <lem9@users.sourceforge.net>
* tbl_select.php3, tbl_change.php3, * tbl_select.php3, tbl_change.php3,

View File

@@ -563,7 +563,7 @@ if (!defined('PMA_BUILD_DUMP_LIB_INCLUDED')){
// bufferized // bufferized
if (!empty($GLOBALS['ob_mode']) if (!empty($GLOBALS['ob_mode'])
&& (isset($GLOBALS['zip']) || isset($GLOBALS['bzip']) || isset($GLOBALS['gzip']))) { && (isset($GLOBALS['zip']) || isset($GLOBALS['bzip']) || isset($GLOBALS['gzip']))) {
if (!isset($GLOBALS['now']) { if (!isset($GLOBALS['now'])) {
$GLOBALS['now'] = gmdate('D, d M Y H:i:s') . ' GMT'; $GLOBALS['now'] = gmdate('D, d M Y H:i:s') . ' GMT';
} }
header('Expires: ' . $GLOBALS['now']); header('Expires: ' . $GLOBALS['now']);