Changeset 57404 for branches/5.1/src/wp-admin/includes/schema.php
- Timestamp:
- 01/30/2024 02:59:13 PM (15 months ago)
- Location:
- branches/5.1
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.1
- Property svn:mergeinfo changed
/trunk merged: 57388-57389
- Property svn:mergeinfo changed
-
branches/5.1/src/wp-admin/includes/schema.php
r44683 r57404 577 577 } 578 578 579 if ( is_array( $value ) ) {580 $value = serialize( $value );581 }582 579 if ( ! empty( $insert ) ) { 583 580 $insert .= ', '; 584 581 } 582 583 $value = maybe_serialize( sanitize_option( $option, $value ) ); 584 585 585 $insert .= $wpdb->prepare( '(%s, %s, %s)', $option, $value, $autoload ); 586 586 }
Note: See TracChangeset
for help on using the changeset viewer.