From 68b7f0eabbf04fed4499e8891d349a3eb24344c6 Mon Sep 17 00:00:00 2001 From: Carolina Nymark Date: Fri, 13 Oct 2023 12:27:02 +0200 Subject: [PATCH] Fix PHP issue after merging updates from trunk. --- packages/block-library/src/post-featured-image/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/block-library/src/post-featured-image/index.php b/packages/block-library/src/post-featured-image/index.php index beb1043dfd6593..f9a8a17934e542 100644 --- a/packages/block-library/src/post-featured-image/index.php +++ b/packages/block-library/src/post-featured-image/index.php @@ -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 );