Changeset 52474 for branches/4.9/src/wp-admin/includes/upgrade.php
- Timestamp:
- 01/06/2022 06:14:19 PM (3 years ago)
- Location:
- branches/4.9
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.9
- Property svn:mergeinfo changed
/trunk merged: 52454-52457
- Property svn:mergeinfo changed
-
branches/4.9/src/wp-admin/includes/upgrade.php
r43272 r52474 1298 1298 while( $rows = $wpdb->get_results( "SELECT option_name, option_value FROM $wpdb->options ORDER BY option_id LIMIT $start, 20" ) ) { 1299 1299 foreach ( $rows as $row ) { 1300 $value = $row->option_value;1301 if ( !@unserialize( $value ))1300 $value = maybe_unserialize( $row->option_value ); 1301 if ( $value === $row->option_value ) 1302 1302 $value = stripslashes( $value ); 1303 1303 if ( $value !== $row->option_value ) {
Note: See TracChangeset
for help on using the changeset viewer.