Changeset 57398 for branches/5.7/src/wp-admin/includes/schema.php
- Timestamp:
- 01/30/2024 02:48:25 PM (12 months ago)
- Location:
- branches/5.7
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.7
- Property svn:mergeinfo changed
/trunk merged: 57388-57389
- Property svn:mergeinfo changed
-
branches/5.7/src/wp-admin/includes/schema.php
r49581 r57398 585 585 } 586 586 587 if ( is_array( $value ) ) {588 $value = serialize( $value );589 }590 591 587 if ( ! empty( $insert ) ) { 592 588 $insert .= ', '; 593 589 } 590 591 $value = maybe_serialize( sanitize_option( $option, $value ) ); 594 592 595 593 $insert .= $wpdb->prepare( '(%s, %s, %s)', $option, $value, $autoload );
Note: See TracChangeset
for help on using the changeset viewer.