lib/private/files.php: adapted to minimally changed ZipStreamer API

This commit is contained in:
Nicolai Ehemann 2014-04-03 15:39:19 +02:00
parent f9b05578a6
commit be2023dae3
2 changed files with 3 additions and 3 deletions

@ -1 +1 @@
Subproject commit b94f7d38f6e13825fd34c7113827d3c369a689ad
Subproject commit 0f862d433ad146ebca97e356c703369777c2a30f

View File

@ -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();