- Timestamp:
- 01/06/2022 05:04:51 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/upgrade.php
r52451 r52456 1626 1626 while ( $rows = $wpdb->get_results( "SELECT option_name, option_value FROM $wpdb->options ORDER BY option_id LIMIT $start, 20" ) ) { 1627 1627 foreach ( $rows as $row ) { 1628 $value = $row->option_value;1629 if ( ! @unserialize( $value )) {1628 $value = maybe_unserialize( $row->option_value ); 1629 if ( $value === $row->option_value ) { 1630 1630 $value = stripslashes( $value ); 1631 1631 }
Note: See TracChangeset
for help on using the changeset viewer.