Changeset 57391
- Timestamp:
- 01/30/2024 02:25:41 PM (8 months ago)
- Location:
- branches/6.4
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/6.4
-
branches/6.4/src/wp-admin/includes/schema.php
r56657 r57391 600 600 } 601 601 602 if ( is_array( $value ) ) {603 $value = serialize( $value );604 }605 606 602 if ( ! empty( $insert ) ) { 607 603 $insert .= ', '; 608 604 } 605 606 $value = maybe_serialize( sanitize_option( $option, $value ) ); 609 607 610 608 $insert .= $wpdb->prepare( '(%s, %s, %s)', $option, $value, $autoload );
Note: See TracChangeset
for help on using the changeset viewer.