From 63f66c3788d9d799c6c3c6cb6e9541aed572802a Mon Sep 17 00:00:00 2001 From: Andrew Duthie Date: Wed, 6 May 2020 09:53:42 -0400 Subject: [PATCH] Block Library: Post Author: Avoid implicit dependency on post global --- packages/block-library/src/post-author/index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/block-library/src/post-author/index.php b/packages/block-library/src/post-author/index.php index d0c58245c5733..d629b4267d012 100644 --- a/packages/block-library/src/post-author/index.php +++ b/packages/block-library/src/post-author/index.php @@ -133,8 +133,8 @@ function render_block_core_post_author( $attributes, $content, $block ) { ( $attributes['showAvatar'] ? '
' . $avatar . '
' : '' ) . '
' . ( ! empty( $byline ) ? '' : '' ) . - '' . - ( ! empty( $attributes['showBio'] ) ? '' : '' ) . + '' . + ( ! empty( $attributes['showBio'] ) ? '' : '' ) . '
' . ''; }