Changeset 57414 for branches/4.1/src/wp-admin/includes/schema.php
- Timestamp:
- 01/30/2024 03:15:17 PM (16 months ago)
- Location:
- branches/4.1
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.1
- Property svn:mergeinfo changed
/trunk merged: 57388-57389
- Property svn:mergeinfo changed
-
branches/4.1/src/wp-admin/includes/schema.php
r30742 r57414 514 514 $autoload = 'yes'; 515 515 516 if ( is_array($value) )517 $value = serialize($value);518 516 if ( !empty($insert) ) 519 517 $insert .= ', '; 518 519 $value = maybe_serialize( sanitize_option( $option, $value ) ); 520 520 521 $insert .= $wpdb->prepare( "(%s, %s, %s)", $option, $value, $autoload ); 521 522 }
Note: See TracChangeset
for help on using the changeset viewer.