From 4c3d4f7d362edba78ef16ef6da3b3174e43060c4 Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Thu, 24 Jan 2013 16:56:23 +0100 Subject: [PATCH] quick fixing this require_once. On windows the wrong file will be required: lib/archive/tar.php and not Archive/Tar.php. Best would be to rename the lib/archive/tar.php or put it into a different folder --- lib/archive/tar.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/archive/tar.php b/lib/archive/tar.php index 117d88e5f4..e7c8138961 100644 --- a/lib/archive/tar.php +++ b/lib/archive/tar.php @@ -6,7 +6,7 @@ * See the COPYING-README file. */ -require_once 'Archive/Tar.php'; +require_once OC::$THIRDPARTYROOT . '/3rdparty/Archive/Tar.php'; class OC_Archive_TAR extends OC_Archive{ const PLAIN=0;