Correct the ZipArchive opening test logic. See #13491
git-svn-id: http://svn.automattic.com/wordpress/trunk@14800 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
c84bc2e846
commit
f8111531f4
|
@ -585,7 +585,7 @@ function _unzip_file_ziparchive($file, $to, $needed_dirs = array() ) {
|
||||||
|
|
||||||
// PHP4-compat - php4 classes can't contain constants
|
// PHP4-compat - php4 classes can't contain constants
|
||||||
$zopen = $z->open($file, /* ZIPARCHIVE::CHECKCONS */ 4);
|
$zopen = $z->open($file, /* ZIPARCHIVE::CHECKCONS */ 4);
|
||||||
if ( true !== $zopen || /* ZIPARCHIVE::ZIP_ER_OK */ 0 !== $zopen ) // may return true, or (int)0 ZIP_ER_OK under certain versions
|
if ( true !== $zopen && /* ZIPARCHIVE::ZIP_ER_OK */ 0 !== $zopen ) // may return true, or (int)0 ZIP_ER_OK under certain versions
|
||||||
return new WP_Error('incompatible_archive', __('Incompatible Archive.'));
|
return new WP_Error('incompatible_archive', __('Incompatible Archive.'));
|
||||||
|
|
||||||
for ( $i = 0; $i < $z->numFiles; $i++ ) {
|
for ( $i = 0; $i < $z->numFiles; $i++ ) {
|
||||||
|
@ -1004,4 +1004,4 @@ foreach ( (array) $extra_fields as $field ) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
?>
|
?>
|
Loading…
Reference in New Issue