Skip to content
Snippets Groups Projects
Commit 49b58ab1 authored by chris's avatar chris
Browse files

plugin manager update, improved compression type detection

darcs-hash:20050915005634-9b6ab-37a0f62cb856f0bdd30956074fabd9c225d926a1.gz
parent 8e266198
No related branches found
No related tags found
No related merge requests found
......@@ -594,7 +594,11 @@ class ap_manage {
require_once(DOKU_PLUGIN."plugin/inc/tarlib.class.php");
$tar = new CompTar($file, COMPRESS_DETECT);
if (strpos($ext, 'bz') !== false) $compress_type = COMPRESS_BZIP;
else if (strpos($ext,'gz') !== false) $compress_type = COMPRESS_GZIP;
else $compress_type = COMPRESS_NONE;
$tar = new CompTar($file, $compress_type);
$ok = $tar->Extract(FULL_ARCHIVE, $target, '', 0777);
// FIXME sort something out for handling tar error messages meaningfully
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment