diff options
Diffstat (limited to 'zipstream.php')
| -rw-r--r-- | zipstream.php | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/zipstream.php b/zipstream.php index 43e847a..8a6d67f 100644 --- a/zipstream.php +++ b/zipstream.php @@ -116,12 +116,12 @@ class ZipStream {    ###################    function add_to_cdr($name, $time, $crc, $zlen, $len, $rec_len) { -    $this->files[] = array($name, $time, $crc32, $zlen, $len, $this->ofs); +    $this->files[] = array($name, $time, $crc, $zlen, $len, $this->ofs);      $this->ofs += $rec_len;    }    function add_cdr_file($args) { -    list ($name, $time, $crc32, $zlen, $len, $ofs) = $args; +    list ($name, $time, $crc, $zlen, $len, $ofs) = $args;      $fields = array(              # (from V,F of APPNOTE.TXT)        array('V', 0x02014b50),     # central file header signature  | 
