Make WordPress Core

Changeset 57392

Timestamp:
01/30/2024 02:31:53 PM (6 months ago)
Author:
jorbin
Message:

Grouped Backports to the 6.3 branch

  • Install: When populating options, maybe_serialize instead of always serialize.
  • Uploads: Check for and verify ZIP archives.

Merges [57388] and [57389] to the 6.3 branch.

Props costdev, peterwilsoncc, azaozz, tykoted, johnbillion, desrosj, afragen, jorbin, xknown.

Location:
branches/6.3
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/6.3

  • branches/6.3/src/wp-admin/includes/class-file-upload-upgrader.php

    r55911 r57392  
    7070            }
    7171
     72
     73
     74
     75
     76
     77
     78
     79
     80
     81
     82
     83
     84
     85
     86
     87
     88
     89
     90
     91
     92
     93
     94
     95
    7296            $this->filename = $_FILES[ $form ]['name'];
    7397            $this->package  = $file['file'];
  • branches/6.3/src/wp-admin/includes/schema.php

    r56176 r57392  
    597597        }
    598598
    599         if ( is_array( $value ) ) {
    600             $value = serialize( $value );
    601         }
    602 
    603599        if ( ! empty( $insert ) ) {
    604600            $insert .= ', ';
    605601        }
     602
     603
    606604
    607605        $insert .= $wpdb->prepare( '(%s, %s, %s)', $option, $value, $autoload );
  • branches/6.3/src/wp-admin/update.php

    r55641 r57392  
    154154
    155155        check_admin_referer( 'plugin-upload' );
     156
     157
     158
     159
    156160
    157161        $file_upload = new File_Upload_Upgrader( 'pluginzip', 'package' );
     
    302306
    303307        check_admin_referer( 'theme-upload' );
     308
     309
     310
     311
    304312
    305313        $file_upload = new File_Upload_Upgrader( 'themezip', 'package' );
Note: See TracChangeset for help on using the changeset viewer.