Changeset 61442 for trunk/src/wp-includes/global-styles-and-settings.php
- Timestamp:
- 01/06/2026 05:12:34 AM (3 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/global-styles-and-settings.php
r60459 r61442 284 284 if ( $can_use_cached ) { 285 285 // Use the block name as the key for cached CSS data. Otherwise, use a hash of the metadata. 286 $cache_node_key = isset( $metadata['name'] ) ? $metadata['name'] :md5( wp_json_encode( $metadata ) );286 $cache_node_key = $metadata['name'] ?? md5( wp_json_encode( $metadata ) ); 287 287 288 288 if ( isset( $cached['blocks'][ $cache_node_key ] ) ) {
Note: See TracChangeset
for help on using the changeset viewer.