Fixed bug #441571 (Gzipped dumps have wrong extension)

This commit is contained in:
Loïc Chapeaux
2001-07-16 17:29:38 +00:00
parent 9909aafbb2
commit a3e9dd451b
2 changed files with 5 additions and 1 deletions

View File

@@ -6,6 +6,10 @@ $Id$
$Source$
2001-07-16 Lo<4C>c Chapeaux <lolo@phpheaven.net>
* tbl_dump.php3, line 26: fixed bug #441571 (Gzipped dumps have wrong
extension).
2001-07-16 Steve Alberty <alberty@neptunlabs.de>
* tbl_changes.php3: make it possible to edit empty binary fields
* tbl_properties.php3: disable nowrap on enum and set <td>'s

View File

@@ -23,7 +23,7 @@ else
include("./lib.inc.php3");
if (isset($bzip) && $bzip == 'bzip') {
$ext = 'bz2';
} else if (isset($gzip) && $gzip == 'bzip') {
} else if (isset($gzip) && $gzip == 'gzip') {
$ext = 'gz';
} else if ($what == 'csv') {
$ext = 'csv';