From 54cdfaef59d9360520b357de55706975d62a5b41 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Mon, 18 May 2020 12:55:06 +0000 Subject: [PATCH] Themes: Remove extra whitespace from `wp-admin/includes/ajax-actions.php` and `wp-admin/includes/theme.php`. Follow-up to [47816]. See #48491. Built from https://develop.svn.wordpress.org/trunk@47818 git-svn-id: http://core.svn.wordpress.org/trunk@47594 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/ajax-actions.php | 4 ++-- wp-admin/includes/theme.php | 4 ++-- wp-includes/version.php | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/wp-admin/includes/ajax-actions.php b/wp-admin/includes/ajax-actions.php index f7e03b191e..5b740af44c 100644 --- a/wp-admin/includes/ajax-actions.php +++ b/wp-admin/includes/ajax-actions.php @@ -3573,8 +3573,8 @@ function wp_ajax_query_themes() { $theme->num_ratings = number_format_i18n( $theme->num_ratings ); $theme->preview_url = set_url_scheme( $theme->preview_url ); - $theme->compatible_wp = is_wp_version_compatible( $theme->requires ); - $theme->compatible_php = is_php_version_compatible( $theme->requires_php ); + $theme->compatible_wp = is_wp_version_compatible( $theme->requires ); + $theme->compatible_php = is_php_version_compatible( $theme->requires_php ); } wp_send_json_success( $api ); diff --git a/wp-admin/includes/theme.php b/wp-admin/includes/theme.php index efdb4fa53a..09473c1a50 100644 --- a/wp-admin/includes/theme.php +++ b/wp-admin/includes/theme.php @@ -692,8 +692,8 @@ function wp_prepare_themes_for_js( $themes = null ) { 'authorAndUri' => $theme->display( 'Author' ), 'tags' => $theme->display( 'Tags' ), 'version' => $theme->get( 'Version' ), - 'compatibleWP' => is_wp_version_compatible( $theme->get( 'RequiresWP' ) ), - 'compatiblePHP' => is_php_version_compatible( $theme->get( 'RequiresPHP' ) ), + 'compatibleWP' => is_wp_version_compatible( $theme->get( 'RequiresWP' ) ), + 'compatiblePHP' => is_php_version_compatible( $theme->get( 'RequiresPHP' ) ), 'parent' => $parent, 'active' => $slug === $current_theme, 'hasUpdate' => isset( $updates[ $slug ] ), diff --git a/wp-includes/version.php b/wp-includes/version.php index c7d86c47fb..506440e860 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.5-alpha-47817'; +$wp_version = '5.5-alpha-47818'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.