Changeset 52480 for branches/4.3/src/wp-admin/includes/upgrade.php
- Timestamp:
- 01/06/2022 06:19:09 PM (3 years ago)
- Location:
- branches/4.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.3
- Property svn:mergeinfo changed
/trunk merged: 52454-52457
- Property svn:mergeinfo changed
-
branches/4.3/src/wp-admin/includes/upgrade.php
r37938 r52480 1207 1207 while( $rows = $wpdb->get_results( "SELECT option_name, option_value FROM $wpdb->options ORDER BY option_id LIMIT $start, 20" ) ) { 1208 1208 foreach( $rows as $row ) { 1209 $value = $row->option_value;1210 if ( !@unserialize( $value ))1209 $value = maybe_unserialize( $row->option_value ); 1210 if ( $value === $row->option_value ) 1211 1211 $value = stripslashes( $value ); 1212 1212 if ( $value !== $row->option_value ) {
Note: See TracChangeset
for help on using the changeset viewer.