From 7047a91c0ecdbf43d4a7a0a591464cd1ed2f2c4b Mon Sep 17 00:00:00 2001 From: Aaron Jorbin Date: Tue, 18 Mar 2025 22:06:21 +0000 Subject: [PATCH] Coding Standards: Fix alignment in `locate_block_template`. Follow-up to [59449]. See #62053, #62279. git-svn-id: https://develop.svn.wordpress.org/trunk@60046 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/block-template.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/block-template.php b/src/wp-includes/block-template.php index 86e57d6550..affae1c09a 100644 --- a/src/wp-includes/block-template.php +++ b/src/wp-includes/block-template.php @@ -100,7 +100,7 @@ function locate_block_template( $template, $type, array $templates ) { } else { if ( $block_template->has_theme_file ) { // Show contents from theme template if user is not logged in. - $theme_template = _get_block_template_file( 'wp_template', $block_template->slug ); + $theme_template = _get_block_template_file( 'wp_template', $block_template->slug ); $_wp_current_template_content = file_get_contents( $theme_template['path'] ); } else { $_wp_current_template_content = $block_template->content;