Changeset 60434
- Timestamp:
- 07/08/2025 08:52:24 AM (5 months ago)
- Location:
- branches/6.8
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
src/wp-includes/blocks.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/6.8
-
branches/6.8/src/wp-includes/blocks.php
r60189 r60434 329 329 $style_uri = get_block_asset_url( $style_path_norm ); 330 330 331 $version = ! $is_core_block && isset( $metadata['version'] ) ? $metadata['version'] : false; 332 $result = wp_register_style( 331 $block_version = ! $is_core_block && isset( $metadata['version'] ) ? $metadata['version'] : false; 332 $version = $style_path_norm && defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? filemtime( $style_path_norm ) : $block_version; 333 $result = wp_register_style( 333 334 $style_handle_name, 334 335 $style_uri,
Note: See TracChangeset
for help on using the changeset viewer.