From 54ce5e46c86b32f7cc3d49da29df11ef12a06cfa Mon Sep 17 00:00:00 2001 From: stronk7 Date: Sun, 10 Oct 2004 21:57:58 +0000 Subject: [PATCH] Delete some debug output... --- lib/moodlelib.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/moodlelib.php b/lib/moodlelib.php index 02b9828e3fb..5f86f2916d3 100644 --- a/lib/moodlelib.php +++ b/lib/moodlelib.php @@ -3256,8 +3256,6 @@ function unzip_file ($zipfile, $destination = '') { // -$zipfilename is the name of the zip file (without path) // -$destpath is the destination path where the zip file will uncompressed (dir) - echo "zippath: $zippath - zipfilename: $zipfilename - destpath: $destpath
"; //Debug - if (empty($CFG->unzip)) { // Use built-in php-based unzip function include_once("$CFG->libdir/pclzip/pclzip.lib.php"); @@ -3277,7 +3275,6 @@ function unzip_file ($zipfile, $destination = '') { escapeshellarg($CFG->unzip).' -o '. escapeshellarg(cleardoubleslashes("$zippath/$zipfilename")).' -d '. escapeshellarg($destpath).$redirection; - echo $command; Exec($command,$list); }