Make WordPress Core


Ignore:
Timestamp:
01/30/2024 03:03:04 PM (12 months ago)
Author:
jorbin
Message:

Grouped Backports to the 4.9 branch.

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

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

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

Location:
branches/4.9
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/4.9

  • branches/4.9/src/wp-admin/includes/schema.php

    r43532 r57406  
    553553            $autoload = 'yes';
    554554
    555         if ( is_array($value) )
    556             $value = serialize($value);
    557555        if ( !empty($insert) )
    558556            $insert .= ', ';
     557
     558        $value = maybe_serialize( sanitize_option( $option, $value ) );
     559
    559560        $insert .= $wpdb->prepare( "(%s, %s, %s)", $option, $value, $autoload );
    560561    }
Note: See TracChangeset for help on using the changeset viewer.