diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2013-02-08 10:18:49 -0800 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2013-02-08 10:18:49 -0800 |
commit | 12bdc6ddb6021f772e8e6364eee89f1406ee3d7d (patch) | |
tree | c606cc766bdb735376cfbd998192d7bba8c4ebb6 /lib | |
parent | 96042f1e5b343ed75f59fc2997b7e54c07b557da (diff) | |
parent | 4c3d4f7d362edba78ef16ef6da3b3174e43060c4 (diff) | |
download | nextcloud-server-12bdc6ddb6021f772e8e6364eee89f1406ee3d7d.tar.gz nextcloud-server-12bdc6ddb6021f772e8e6364eee89f1406ee3d7d.zip |
Merge pull request #1439 from owncloud/fix-archive-tar-on-win32-master
quick fixing this require_once.
Diffstat (limited to 'lib')
-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; |