diff options
-rw-r--r-- | README | 2 | ||||
-rw-r--r-- | zipstream.php | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -4,7 +4,7 @@ ZipStream 0.1.1 README Please see the file COPYING for licensing and warranty information. The latest version of this software is available at the following URL: - http://pablotron.org/software/zipstream-php. + http://pablotron.org/software/zipstream-php Overview ======== diff --git a/zipstream.php b/zipstream.php index 077a9ff..9138694 100644 --- a/zipstream.php +++ b/zipstream.php @@ -295,7 +295,7 @@ class ZipStream { # build file header $fields = array( # (from V.A of APPNOTE.TXT) array('V', 0x04034b50), # local file header signature - array('v', 0x14), # version needed to extract + array('v', 0x00), # version needed to extract array('v', 0x00), # general purpose bit flag array('v', $meth), # compresion method (deflate or store) array('V', $dts), # dos timestamp @@ -409,7 +409,7 @@ class ZipStream { $fields = array( # (from V,F of APPNOTE.TXT) array('V', 0x02014b50), # central file header signature array('v', 0x00), # version made by - array('v', 0x14), # version needed to extract + array('v', 0x00), # version needed to extract array('v', 0x00), # general purpose bit flag array('v', $meth), # compresion method (deflate or store) array('V', $dts), # dos timestamp |