Skip to content

Commit

Permalink
Fix PHP issue after merging updates from trunk.
Browse files Browse the repository at this point in the history
  • Loading branch information
carolinan committed Oct 13, 2023
1 parent 059bac9 commit 68b7f0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/block-library/src/post-featured-image/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ function render_block_core_post_featured_image( $attributes, $content, $block )
if ( ! isset( $block->context['postId'] ) ) {
return '';
}
$post_ID. = $block->context['postId'];
$post_ID = $block->context['postId'];
$is_link = isset( $attributes['isLink'] ) && $attributes['isLink'];
$size_slug = isset( $attributes['sizeSlug'] ) ? $attributes['sizeSlug'] : 'post-thumbnail';
$attr = get_block_core_post_featured_image_border_attributes( $attributes );
Expand Down

0 comments on commit 68b7f0e

Please sign in to comment.