Skip to content

Commit

Permalink
Site Health: Move the Imagick entry higher in the list of recommended…
Browse files Browse the repository at this point in the history
… 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.

git-svn-id: https://develop.svn.wordpress.org/trunk@51805 602fd350-edb4-49c9-b593-d223f7449a82
  • Loading branch information
SergeyBiryukov committed Sep 12, 2021
1 parent ad96dc2 commit 092ee0f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/wp-admin/includes/class-wp-site-health.php
Original file line number Diff line number Diff line change
Expand Up @@ -891,6 +891,10 @@ public function get_test_php_extensions() {
'function' => 'hash',
'required' => false,
),
'imagick' => array(
'extension' => 'imagick',
'required' => false,
),
'json' => array(
'function' => 'json_last_error',
'required' => true,
Expand All @@ -916,10 +920,6 @@ public function get_test_php_extensions() {
'function' => 'preg_match',
'required' => false,
),
'imagick' => array(
'extension' => 'imagick',
'required' => false,
),
'mod_xml' => array(
'extension' => 'libxml',
'required' => false,
Expand Down

0 comments on commit 092ee0f

Please sign in to comment.