Skip to content

Commit 7047a91

Browse files
committed
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
1 parent 392867a commit 7047a91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/wp-includes/block-template.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ function locate_block_template( $template, $type, array $templates ) {
100100
} else {
101101
if ( $block_template->has_theme_file ) {
102102
// Show contents from theme template if user is not logged in.
103-
$theme_template = _get_block_template_file( 'wp_template', $block_template->slug );
103+
$theme_template = _get_block_template_file( 'wp_template', $block_template->slug );
104104
$_wp_current_template_content = file_get_contents( $theme_template['path'] );
105105
} else {
106106
$_wp_current_template_content = $block_template->content;

0 commit comments

Comments
 (0)