Changeset 58338
- Timestamp:
- 06/04/2024 07:32:36 PM (11 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-site-health.php
r58332 r58338 2599 2599 $total_length = 0; 2600 2600 2601 foreach ( $alloptions as $option_name => $option_value ) { 2602 $total_length += strlen( $option_value ); 2601 foreach ( $alloptions as $option_value ) { 2602 if ( is_array( $option_value ) || is_object( $option_value ) ) { 2603 $option_value = maybe_serialize( $option_value ); 2604 } 2605 $total_length += strlen( (string) $option_value ); 2603 2606 } 2604 2607
Note: See TracChangeset
for help on using the changeset viewer.