From: stronk7 Date: Sun, 10 Oct 2004 22:00:30 +0000 (+0000) Subject: Delete some debug info. X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=48eeac79635fdb43478019df3f2653cb8000b908;p=moodle.git Delete some debug info. Merged from MOODLE_14_STABLE --- diff --git a/lib/moodlelib.php b/lib/moodlelib.php index 2a37443750..4476ffe3e0 100644 --- a/lib/moodlelib.php +++ b/lib/moodlelib.php @@ -4345,8 +4345,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"); @@ -4366,7 +4364,6 @@ function unzip_file ($zipfile, $destination = '') { escapeshellarg($CFG->unzip).' -o '. escapeshellarg(cleardoubleslashes("$zippath/$zipfilename")).' -d '. escapeshellarg($destpath).$redirection; - echo $command; Exec($command,$list); }