]> git.mjollnir.org Git - moodle.git/commitdiff
Delete some debug info.
authorstronk7 <stronk7>
Sun, 10 Oct 2004 22:00:30 +0000 (22:00 +0000)
committerstronk7 <stronk7>
Sun, 10 Oct 2004 22:00:30 +0000 (22:00 +0000)
Merged from MOODLE_14_STABLE

lib/moodlelib.php

index 2a37443750407b115c9d9eacddfd997c91836134..4476ffe3e03b02b72d5b91133ee59f890badcb28 100644 (file)
@@ -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 <br />";  //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);
     }