Changeset 57395
- Timestamp:
- 01/30/2024 02:39:47 PM (8 months ago)
- Location:
- branches/6.0
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/6.0
- Property svn:mergeinfo changed
/trunk merged: 57388-57389
- Property svn:mergeinfo changed
-
branches/6.0/src/wp-admin/includes/class-file-upload-upgrader.php
r53183 r57395 69 69 } 70 70 71 if ( 'pluginzip' === $form || 'themezip' === $form ) { 72 $archive_is_valid = false; 73 74 /** This filter is documented in wp-admin/includes/file.php */ 75 if ( class_exists( 'ZipArchive', false ) && apply_filters( 'unzip_file_use_ziparchive', true ) ) { 76 $archive = new ZipArchive(); 77 $archive_is_valid = $archive->open( $file['file'], ZIPARCHIVE::CHECKCONS ); 78 79 if ( true === $archive_is_valid ) { 80 $archive->close(); 81 } 82 } else { 83 require_once ABSPATH . 'wp-admin/includes/class-pclzip.php'; 84 85 $archive = new PclZip( $file['file'] ); 86 $archive_is_valid = is_array( $archive->properties() ); 87 } 88 89 if ( true !== $archive_is_valid ) { 90 wp_delete_file( $file['file'] ); 91 wp_die( __( 'Incompatible Archive.' ) ); 92 } 93 } 94 71 95 $this->filename = $_FILES[ $form ]['name']; 72 96 $this->package = $file['file']; -
branches/6.0/src/wp-admin/includes/schema.php
r53083 r57395 588 588 } 589 589 590 if ( is_array( $value ) ) {591 $value = serialize( $value );592 }593 594 590 if ( ! empty( $insert ) ) { 595 591 $insert .= ', '; 596 592 } 593 594 $value = maybe_serialize( sanitize_option( $option, $value ) ); 597 595 598 596 $insert .= $wpdb->prepare( '(%s, %s, %s)', $option, $value, $autoload ); -
branches/6.0/src/wp-admin/update.php
r51475 r57395 154 154 155 155 check_admin_referer( 'plugin-upload' ); 156 157 if ( isset( $_FILES['pluginzip']['name'] ) && ! str_ends_with( strtolower( $_FILES['pluginzip']['name'] ), '.zip' ) ) { 158 wp_die( __( 'Only .zip archives may be uploaded.' ) ); 159 } 156 160 157 161 $file_upload = new File_Upload_Upgrader( 'pluginzip', 'package' ); … … 302 306 303 307 check_admin_referer( 'theme-upload' ); 308 309 if ( isset( $_FILES['themezip']['name'] ) && ! str_ends_with( strtolower( $_FILES['themezip']['name'] ), '.zip' ) ) { 310 wp_die( __( 'Only .zip archives may be uploaded.' ) ); 311 } 304 312 305 313 $file_upload = new File_Upload_Upgrader( 'themezip', 'package' );
Note: See TracChangeset
for help on using the changeset viewer.