Changeset 57396 for branches/5.9/src/wp-admin/includes/schema.php
- Timestamp:
- 01/30/2024 02:43:15 PM (17 months ago)
- Location:
- branches/5.9
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.9
- Property svn:mergeinfo changed
/trunk merged: 57388-57389
- Property svn:mergeinfo changed
-
branches/5.9/src/wp-admin/includes/schema.php
r52215 r57396 588 588 } 589 589 590 if ( is_array( $value ) ) {591 $value = serialize( $value );592 }593 594 590 if ( ! empty( $insert ) ) { 595 591 $insert .= ', '; 596 592 } 593 594 $value = maybe_serialize( sanitize_option( $option, $value ) ); 597 595 598 596 $insert .= $wpdb->prepare( '(%s, %s, %s)', $option, $value, $autoload );
Note: See TracChangeset
for help on using the changeset viewer.