Changeset 52467 for branches/5.6/src/wp-admin/includes/upgrade.php
- Timestamp:
- 01/06/2022 05:55:41 PM (4 years ago)
- Location:
- branches/5.6
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
src/wp-admin/includes/upgrade.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/5.6
- Property svn:mergeinfo changed
/trunk merged: 52454-52457
- Property svn:mergeinfo changed
-
branches/5.6/src/wp-admin/includes/upgrade.php
r49765 r52467 1659 1659 while ( $rows = $wpdb->get_results( "SELECT option_name, option_value FROM $wpdb->options ORDER BY option_id LIMIT $start, 20" ) ) { 1660 1660 foreach ( $rows as $row ) { 1661 $value = $row->option_value;1662 if ( ! @unserialize( $value )) {1661 $value = maybe_unserialize( $row->option_value ); 1662 if ( $value === $row->option_value ) { 1663 1663 $value = stripslashes( $value ); 1664 1664 }
Note: See TracChangeset
for help on using the changeset viewer.