From 65ff35bb75deb0a83a606d5b0461ae0a21ad1143 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sun, 12 Sep 2021 10:09:57 +0000 Subject: [PATCH] Site Health: Move the Imagick entry higher in the list of recommended PHP extensions. This better matches its position in the [https://make.wordpress.org/hosting/handbook/server-environment/#php-extensions Hosting Team's handbook] recommendations. Follow-up to [44986], [46268], [51804]. See #52654. Built from https://develop.svn.wordpress.org/trunk@51805 git-svn-id: http://core.svn.wordpress.org/trunk@51412 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/class-wp-site-health.php | 8 ++++---- wp-includes/version.php | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/wp-admin/includes/class-wp-site-health.php b/wp-admin/includes/class-wp-site-health.php index 555c6749fd..884b37ca5a 100644 --- a/wp-admin/includes/class-wp-site-health.php +++ b/wp-admin/includes/class-wp-site-health.php @@ -891,6 +891,10 @@ class WP_Site_Health { 'function' => 'hash', 'required' => false, ), + 'imagick' => array( + 'extension' => 'imagick', + 'required' => false, + ), 'json' => array( 'function' => 'json_last_error', 'required' => true, @@ -916,10 +920,6 @@ class WP_Site_Health { 'function' => 'preg_match', 'required' => false, ), - 'imagick' => array( - 'extension' => 'imagick', - 'required' => false, - ), 'mod_xml' => array( 'extension' => 'libxml', 'required' => false, diff --git a/wp-includes/version.php b/wp-includes/version.php index 5506a8edc9..1813e1b684 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.9-alpha-51804'; +$wp_version = '5.9-alpha-51805'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.