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
This commit is contained in:
Thomas Mueller 2013-01-24 16:56:23 +01:00 committed by Bart Visscher
parent 04b97a1906
commit 4c3d4f7d36
1 changed files with 1 additions and 1 deletions

View File

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