Themes: Remove extra whitespace from `wp-admin/includes/ajax-actions.php` and `wp-admin/includes/theme.php`.

Follow-up to [47816].

See #48491.

git-svn-id: https://develop.svn.wordpress.org/trunk@47818 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2020-05-18 12:53:34 +00:00
parent cd7d648040
commit 581bc56b16
2 changed files with 4 additions and 4 deletions

View File

@ -3573,8 +3573,8 @@ function wp_ajax_query_themes() {
$theme->num_ratings = number_format_i18n( $theme->num_ratings ); $theme->num_ratings = number_format_i18n( $theme->num_ratings );
$theme->preview_url = set_url_scheme( $theme->preview_url ); $theme->preview_url = set_url_scheme( $theme->preview_url );
$theme->compatible_wp = is_wp_version_compatible( $theme->requires ); $theme->compatible_wp = is_wp_version_compatible( $theme->requires );
$theme->compatible_php = is_php_version_compatible( $theme->requires_php ); $theme->compatible_php = is_php_version_compatible( $theme->requires_php );
} }
wp_send_json_success( $api ); wp_send_json_success( $api );

View File

@ -692,8 +692,8 @@ function wp_prepare_themes_for_js( $themes = null ) {
'authorAndUri' => $theme->display( 'Author' ), 'authorAndUri' => $theme->display( 'Author' ),
'tags' => $theme->display( 'Tags' ), 'tags' => $theme->display( 'Tags' ),
'version' => $theme->get( 'Version' ), 'version' => $theme->get( 'Version' ),
'compatibleWP' => is_wp_version_compatible( $theme->get( 'RequiresWP' ) ), 'compatibleWP' => is_wp_version_compatible( $theme->get( 'RequiresWP' ) ),
'compatiblePHP' => is_php_version_compatible( $theme->get( 'RequiresPHP' ) ), 'compatiblePHP' => is_php_version_compatible( $theme->get( 'RequiresPHP' ) ),
'parent' => $parent, 'parent' => $parent,
'active' => $slug === $current_theme, 'active' => $slug === $current_theme,
'hasUpdate' => isset( $updates[ $slug ] ), 'hasUpdate' => isset( $updates[ $slug ] ),