Changeset 52463
- Timestamp:
- 01/06/2022 05:27:15 PM (3 years ago)
- Location:
- branches/5.8
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.8
-
branches/5.8/src/wp-admin/includes/upgrade.php
r51088 r52463 1613 1613 while ( $rows = $wpdb->get_results( "SELECT option_name, option_value FROM $wpdb->options ORDER BY option_id LIMIT $start, 20" ) ) { 1614 1614 foreach ( $rows as $row ) { 1615 $value = $row->option_value;1616 if ( ! @unserialize( $value )) {1615 $value = maybe_unserialize( $row->option_value ); 1616 if ( $value === $row->option_value ) { 1617 1617 $value = stripslashes( $value ); 1618 1618 }
Note: See TracChangeset
for help on using the changeset viewer.