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
This commit is contained in:
parent
e76b896881
commit
65ff35bb75
|
@ -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,
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue