Changeset 52468 for branches/5.5/src/wp-admin/includes/upgrade.php
- Timestamp:
- 01/06/2022 06:09:14 PM (3 years ago)
- Location:
- branches/5.5
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.5
- Property svn:mergeinfo changed
/trunk merged: 52454-52457
- Property svn:mergeinfo changed
-
branches/5.5/src/wp-admin/includes/upgrade.php
r48869 r52468 1621 1621 while ( $rows = $wpdb->get_results( "SELECT option_name, option_value FROM $wpdb->options ORDER BY option_id LIMIT $start, 20" ) ) { 1622 1622 foreach ( $rows as $row ) { 1623 $value = $row->option_value;1624 if ( ! @unserialize( $value )) {1623 $value = maybe_unserialize( $row->option_value ); 1624 if ( $value === $row->option_value ) { 1625 1625 $value = stripslashes( $value ); 1626 1626 }
Note: See TracChangeset
for help on using the changeset viewer.