Changeset 57401 for branches/5.4/src/wp-admin/includes/schema.php
- Timestamp:
- 01/30/2024 02:52:50 PM (12 months ago)
- Location:
- branches/5.4
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.4
- Property svn:mergeinfo changed
/trunk merged: 57388-57389
- Property svn:mergeinfo changed
-
branches/5.4/src/wp-admin/includes/schema.php
r47280 r57401 574 574 } 575 575 576 if ( is_array( $value ) ) {577 $value = serialize( $value );578 }579 576 if ( ! empty( $insert ) ) { 580 577 $insert .= ', '; 581 578 } 579 580 $value = maybe_serialize( sanitize_option( $option, $value ) ); 581 582 582 $insert .= $wpdb->prepare( '(%s, %s, %s)', $option, $value, $autoload ); 583 583 }
Note: See TracChangeset
for help on using the changeset viewer.