Revert "Always enable Zip64 extension for zipstreamer"

This commit is contained in:
Joas Schilling 2017-06-09 10:21:26 +02:00 committed by GitHub
parent 628284a34c
commit 7d806bdfbd
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ class Streamer {
if ($request->isUserAgent($this->preferTarFor)) {
$this->streamerInstance = new TarStreamer();
} else {
$this->streamerInstance = new ZipStreamer();
$this->streamerInstance = new ZipStreamer(['zip64' => PHP_INT_SIZE !== 4]);
}
}