Browse Source

Merge pull request #5116 from McNetic/zipstreamer

Always enable Zip64 extension for zipstreamer
tags/v13.0.0beta1
Joas Schilling 7 years ago
parent
commit
1d227d83c0
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      lib/private/Streamer.php

+ 1
- 1
lib/private/Streamer.php View File

if ($request->isUserAgent($this->preferTarFor)) { if ($request->isUserAgent($this->preferTarFor)) {
$this->streamerInstance = new TarStreamer(); $this->streamerInstance = new TarStreamer();
} else { } else {
$this->streamerInstance = new ZipStreamer(['zip64' => PHP_INT_SIZE !== 4]);
$this->streamerInstance = new ZipStreamer();
} }
} }

Loading…
Cancel
Save