diff options
author | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-01-24 16:56:23 +0100 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2013-02-08 15:23:07 +0100 |
commit | 4c3d4f7d362edba78ef16ef6da3b3174e43060c4 (patch) | |
tree | b8531f27903684ffddd445ba19d03e4c42e9e5b3 /lib/archive | |
parent | 04b97a1906c40451880ef3534fc7fd87fcbdc438 (diff) | |
download | nextcloud-server-4c3d4f7d362edba78ef16ef6da3b3174e43060c4.tar.gz nextcloud-server-4c3d4f7d362edba78ef16ef6da3b3174e43060c4.zip |
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
Diffstat (limited to 'lib/archive')
-rw-r--r-- | lib/archive/tar.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/archive/tar.php b/lib/archive/tar.php index 117d88e5f42..e7c81389619 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; |