diff options
author | Nicolai Ehemann <en@enlightened.de> | 2014-04-03 15:39:19 +0200 |
---|---|---|
committer | Nicolai Ehemann <en@enlightened.de> | 2015-09-14 12:57:50 +0200 |
commit | be2023dae34ff9178e6395ab53d90b5e2d0d1b55 (patch) | |
tree | 11c0f353426be58823335a706a77677151ebdb6f | |
parent | f9b05578a62973e8fa0fee619cf84474efc3650b (diff) | |
download | nextcloud-server-be2023dae34ff9178e6395ab53d90b5e2d0d1b55.tar.gz nextcloud-server-be2023dae34ff9178e6395ab53d90b5e2d0d1b55.zip |
lib/private/files.php: adapted to minimally changed ZipStreamer API
m--------- | 3rdparty | 0 | ||||
-rw-r--r-- | lib/private/files.php | 4 |
2 files changed, 2 insertions, 2 deletions
diff --git a/3rdparty b/3rdparty -Subproject b94f7d38f6e13825fd34c7113827d3c369a689a +Subproject 0f862d433ad146ebca97e356c703369777c2a30 diff --git a/lib/private/files.php b/lib/private/files.php index 0172f1ca6af..ec586a7a08a 100644 --- a/lib/private/files.php +++ b/lib/private/files.php @@ -41,7 +41,7 @@ */ // TODO: get rid of this using proper composer packages -require_once 'mcnetic/phpzipstreamer/ZipStreamer.php'; +require_once 'mcnetic/phpzipstreamer/src/ZipStreamer.php'; use OC\Lock\NoopLockingProvider; use OCP\Lock\ILockingProvider; @@ -121,7 +121,7 @@ class OC_Files { if ($get_type === self::FILE) { $zip = false; } else { - $zip = new ZipStreamer(false); + $zip = new ZipStreamer\ZipStreamer(); } OC_Util::obEnd(); |