Changeset 52469 for branches/5.4/src/wp-admin/includes/upgrade.php
- Timestamp:
- 01/06/2022 06:09:54 PM (3 years ago)
- Location:
- branches/5.4
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.4
- Property svn:mergeinfo changed
/trunk merged: 52454-52457
- Property svn:mergeinfo changed
-
branches/5.4/src/wp-admin/includes/upgrade.php
r47280 r52469 1615 1615 while ( $rows = $wpdb->get_results( "SELECT option_name, option_value FROM $wpdb->options ORDER BY option_id LIMIT $start, 20" ) ) { 1616 1616 foreach ( $rows as $row ) { 1617 $value = $row->option_value;1618 if ( ! @unserialize( $value )) {1617 $value = maybe_unserialize( $row->option_value ); 1618 if ( $value === $row->option_value ) { 1619 1619 $value = stripslashes( $value ); 1620 1620 }
Note: See TracChangeset
for help on using the changeset viewer.