Changeset 52475 for branches/4.8/src/wp-admin/includes/upgrade.php
- Timestamp:
- 01/06/2022 06:14:56 PM (3 years ago)
- Location:
- branches/4.8
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.8
- Property svn:mergeinfo changed
/trunk merged: 52454-52457
- Property svn:mergeinfo changed
-
branches/4.8/src/wp-admin/includes/upgrade.php
r40864 r52475 1249 1249 while( $rows = $wpdb->get_results( "SELECT option_name, option_value FROM $wpdb->options ORDER BY option_id LIMIT $start, 20" ) ) { 1250 1250 foreach ( $rows as $row ) { 1251 $value = $row->option_value;1252 if ( !@unserialize( $value ))1251 $value = maybe_unserialize( $row->option_value ); 1252 if ( $value === $row->option_value ) 1253 1253 $value = stripslashes( $value ); 1254 1254 if ( $value !== $row->option_value ) {
Note: See TracChangeset
for help on using the changeset viewer.