From 7d42ae5768915b12edc538b80bdd6006ae3614e4 Mon Sep 17 00:00:00 2001 From: David Baumwald Date: Thu, 10 Mar 2022 17:30:04 +0000 Subject: [PATCH] Coding Standards: Fix minor alignment issue in `wp_ajax_install_theme()`. Follow-up to [52819]. See #54728. git-svn-id: https://develop.svn.wordpress.org/trunk@52840 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/includes/ajax-actions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-admin/includes/ajax-actions.php b/src/wp-admin/includes/ajax-actions.php index ecea223667..b81710ddef 100644 --- a/src/wp-admin/includes/ajax-actions.php +++ b/src/wp-admin/includes/ajax-actions.php @@ -4159,7 +4159,7 @@ function wp_ajax_install_theme() { } } - $theme = wp_get_theme( $slug ); + $theme = wp_get_theme( $slug ); $status['blockTheme'] = $theme->is_block_theme(); if ( ! is_multisite() && current_user_can( 'edit_theme_options' ) && current_user_can( 'customize' ) ) {