diff options
author | Andrey Andreev <narf@devilix.net> | 2020-01-28 20:13:04 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2020-01-28 20:13:04 +0100 |
commit | ced499f7ad90ff8bb6bf0faa2e24a1593204de9a (patch) | |
tree | e4e7e59bcf02a066be9f11bf5c31f7743b7d5e48 | |
parent | 797cd3d25a5411bef7eea9d3b8c38c567bc4635b (diff) |
[ci skip] Add comment about PR #5893 changes
-rw-r--r-- | system/libraries/Zip.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/system/libraries/Zip.php b/system/libraries/Zip.php index 44f73aead..52fac2f8a 100644 --- a/system/libraries/Zip.php +++ b/system/libraries/Zip.php @@ -406,13 +406,14 @@ class CI_Zip { return FALSE; } + // @see https://github.com/bcit-ci/CodeIgniter/issues/5864 $footer = $this->directory."\x50\x4b\x05\x06\x00\x00\x00\x00" .pack('v', $this->entries) // total # of entries "on this disk" .pack('v', $this->entries) // total # of entries overall .pack('V', self::strlen($this->directory)) // size of central dir .pack('V', self::strlen($this->zipdata)) // offset to start of central dir ."\x00\x00"; // .zip file comment length - return $this->zipdata . $footer; + return $this->zipdata.$footer; } // -------------------------------------------------------------------- |