Make WordPress Core


Ignore:
Timestamp:
01/06/2022 06:25:11 PM (4 years ago)
Author:
desrosj
Message:

Grouped backports to the 4.0 branch.

  • Query: Improve sanitization within WP_Tax_Query.
  • Upgrade/Install: Avoid using unserialize() unnecessarily.
  • Formatting: Correctly encode ASCII characters in post slugs.

Merges [52454,52456-52457] to the 4.0 branch.
Props vortfu, dd32, ehtis, zieladam, whyisjake, xknown, peterwilsoncc, desrosj, iandunn.

Location:
branches/4.0
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/4.0

  • branches/4.0/src/wp-admin/includes/upgrade.php

    r32432 r52483  
    10761076        while( $rows = $wpdb->get_results( "SELECT option_name, option_value FROM $wpdb->options ORDER BY option_id LIMIT $start, 20" ) ) {
    10771077            foreach( $rows as $row ) {
    1078                 $value = $row->option_value;
    1079                 if ( !@unserialize( $value ) )
     1078                $value = maybe_unserialize( $row->option_value );
     1079                if ( $value === $row->option_value )
    10801080                    $value = stripslashes( $value );
    10811081                if ( $value !== $row->option_value ) {
Note: See TracChangeset for help on using the changeset viewer.