From edf639d04830c65b42bc81e47664a7816dbf8d9e Mon Sep 17 00:00:00 2001 From: Benjamin Sonntag Date: Thu, 5 Nov 2015 18:31:16 +0100 Subject: [PATCH] fixing a visual bug when uncompressing a .tar.gz file --- bureau/class/m_bro.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bureau/class/m_bro.php b/bureau/class/m_bro.php index 1e55d22f..ff0a70ca 100644 --- a/bureau/class/m_bro.php +++ b/bureau/class/m_bro.php @@ -658,7 +658,7 @@ class m_bro { // need to specify the compression format echo "

" . _("Uncompressing through TAR") . "

";
             $ret = 0;
-            passthru("tar -xf " . escapeshellarg($file) . " -C " . escapeshellarg($dest) . " 2>&1", $ret);
+            passthru("tar -xvf " . escapeshellarg($file) . " -C " . escapeshellarg($dest) . " 2>&1", $ret);
         }
         if (substr($lfile, -4) == ".zip") {
             echo "

" . _("Uncompressing through UNZIP") . "

";