From: Marc MAURICE Date: Mon, 13 Jun 2011 14:01:12 +0000 (+0200) Subject: Some cleanup in tar.php X-Git-Tag: v1.5~3 X-Git-Url: http://positon.org/gitweb/?p=bizou.git;a=commitdiff_plain;h=89aad43dde48a631c75174522b585332fb174ded Some cleanup in tar.php --- diff --git a/plugins/tar/tar.php b/plugins/tar/tar.php index 9395e41..add078d 100644 --- a/plugins/tar/tar.php +++ b/plugins/tar/tar.php @@ -27,15 +27,6 @@ $out = exec("tar --no-recursion --totals -cf /dev/null $filesarg 2>&1"); preg_match('/^Total bytes written: ([0-9]+) /', $out, $matches); $totalsize = $matches[1]; -#$out = exec("du -c $filesarg"); -#preg_match('/^([0-9]+).*total$/', $out, $matches); -#$totalsize = $matches[1] * 1024; - -#var_dump($totalsize); - -#var_dump("tar --no-recursion -c $filesarg"); -#die(); - header("Content-Length: $totalsize"); header('Content-Type: application/x-tar'); header('Content-Disposition: attachment; filename="'.basename($realDir).'.tar"');