diff options
author | pabs <pabs@pablotron.org> | 2009-01-29 13:42:35 -0500 |
---|---|---|
committer | pabs <pabs@pablotron.org> | 2009-01-29 13:42:35 -0500 |
commit | c9d464c8b65c2b0195a3a90f129d18dc381d0b76 (patch) | |
tree | d9c36dcbf9fcdcdb9453d5ddfe9fc4fba3e10d41 | |
parent | 7003089f57d3f855ff53782639b96cb58affb8f8 (diff) | |
download | zipstream-php-c9d464c8b65c2b0195a3a90f129d18dc381d0b76.tar.bz2 zipstream-php-c9d464c8b65c2b0195a3a90f129d18dc381d0b76.zip |
another attempt
-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 |