Coding Standards: Fix alignment in locate_block_template.

Follow-up to [59449].

See #62053, #62279.

Built from https://develop.svn.wordpress.org/trunk@60046


git-svn-id: http://core.svn.wordpress.org/trunk@59382 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Aaron Jorbin
2025-03-18 22:08:26 +00:00
parent 00b99baf07
commit a389073064
2 changed files with 2 additions and 2 deletions

View File

@@ -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;

View File

@@ -16,7 +16,7 @@
*
* @global string $wp_version
*/
$wp_version = '6.8-beta3-60045';
$wp_version = '6.8-beta3-60046';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.