|
Boost-Commit : |
From: daniel_james_at_[hidden]
Date: 2008-07-31 07:39:39
Author: danieljames
Date: 2008-07-31 07:39:39 EDT (Thu, 31 Jul 2008)
New Revision: 47907
URL: http://svn.boost.org/trac/boost/changeset/47907
Log:
Remove error message when unzipping raw files (merge r47906).
Text files modified:
website/public_html/live/common/code/boost_archive.php | 7 +++++--
1 files changed, 5 insertions(+), 2 deletions(-)
Modified: website/public_html/live/common/code/boost_archive.php
==============================================================================
--- website/public_html/live/common/code/boost_archive.php (original)
+++ website/public_html/live/common/code/boost_archive.php 2008-07-31 07:39:39 EDT (Thu, 31 Jul 2008)
@@ -138,8 +138,11 @@
$file_handle = popen($unzip,'rb');
fpassthru($file_handle);
$exit_status = pclose($file_handle);
- if($exit_status != 0)
- echo 'Error extracting file: '.unzip_error($exit_status);
+
+ // Disable the error message because it was appearing for several files.
+ //
+ // if($exit_status != 0)
+ // echo 'Error extracting file: '.unzip_error($exit_status);
}
function content()
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk