Changeset 52472 for branches/5.1/src/wp-admin/includes/upgrade.php
- Timestamp:
- 01/06/2022 06:12:33 PM (3 years ago)
- Location:
- branches/5.1
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.1
- Property svn:mergeinfo changed
/trunk merged: 52454-52457
- Property svn:mergeinfo changed
-
branches/5.1/src/wp-admin/includes/upgrade.php
r44732 r52472 1592 1592 while ( $rows = $wpdb->get_results( "SELECT option_name, option_value FROM $wpdb->options ORDER BY option_id LIMIT $start, 20" ) ) { 1593 1593 foreach ( $rows as $row ) { 1594 $value = $row->option_value;1595 if ( ! @unserialize( $value )) {1594 $value = maybe_unserialize( $row->option_value ); 1595 if ( $value === $row->option_value ) { 1596 1596 $value = stripslashes( $value ); 1597 1597 }
Note: See TracChangeset
for help on using the changeset viewer.