Changeset 48558
- Timestamp:
- 07/22/2020 12:05:45 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-site-health.php
r48548 r48558 1762 1762 $result['status'] = $check_plugin_theme_updates->status; 1763 1763 1764 if ( 'good' !== $ check_plugin_theme_updates->status) {1764 if ( 'good' !== $result['status'] ) { 1765 1765 $result['label'] = __( 'Your site may have problems auto-updating plugins and themes' ); 1766 1766 … … 1805 1805 $result['status'] = $check_loopback->status; 1806 1806 1807 if ( 'good' !== $ check_loopback->status) {1807 if ( 'good' !== $result['status'] ) { 1808 1808 $result['label'] = __( 'Your site could not complete a loopback request' ); 1809 1809 … … 2087 2087 $tests = array( 2088 2088 'direct' => array( 2089 'wordpress_version' => array(2089 'wordpress_version' => array( 2090 2090 'label' => __( 'WordPress Version' ), 2091 2091 'test' => 'wordpress_version', 2092 2092 ), 2093 'plugin_version' => array(2093 'plugin_version' => array( 2094 2094 'label' => __( 'Plugin Versions' ), 2095 2095 'test' => 'plugin_version', 2096 2096 ), 2097 'theme_version' => array(2097 'theme_version' => array( 2098 2098 'label' => __( 'Theme Versions' ), 2099 2099 'test' => 'theme_version', 2100 2100 ), 2101 'php_version' => array(2101 'php_version' => array( 2102 2102 'label' => __( 'PHP Version' ), 2103 2103 'test' => 'php_version', 2104 2104 ), 2105 'php_extensions' => array(2105 'php_extensions' => array( 2106 2106 'label' => __( 'PHP Extensions' ), 2107 2107 'test' => 'php_extensions', 2108 2108 ), 2109 'php_default_timezone' => array(2109 'php_default_timezone' => array( 2110 2110 'label' => __( 'PHP Default Timezone' ), 2111 2111 'test' => 'php_default_timezone', 2112 2112 ), 2113 'php_sessions' => array(2113 'php_sessions' => array( 2114 2114 'label' => __( 'PHP Sessions' ), 2115 2115 'test' => 'php_sessions', 2116 2116 ), 2117 'sql_server' => array(2117 'sql_server' => array( 2118 2118 'label' => __( 'Database Server version' ), 2119 2119 'test' => 'sql_server', 2120 2120 ), 2121 'utf8mb4_support' => array(2121 'utf8mb4_support' => array( 2122 2122 'label' => __( 'MySQL utf8mb4 support' ), 2123 2123 'test' => 'utf8mb4_support', 2124 2124 ), 2125 'https_status' => array(2125 'https_status' => array( 2126 2126 'label' => __( 'HTTPS status' ), 2127 2127 'test' => 'https_status', 2128 2128 ), 2129 'ssl_support' => array(2129 'ssl_support' => array( 2130 2130 'label' => __( 'Secure communication' ), 2131 2131 'test' => 'ssl_support', 2132 2132 ), 2133 'scheduled_events' => array(2133 'scheduled_events' => array( 2134 2134 'label' => __( 'Scheduled events' ), 2135 2135 'test' => 'scheduled_events', 2136 2136 ), 2137 'http_requests' => array(2137 'http_requests' => array( 2138 2138 'label' => __( 'HTTP Requests' ), 2139 2139 'test' => 'http_requests', 2140 2140 ), 2141 'debug_enabled' => array(2141 'debug_enabled' => array( 2142 2142 'label' => __( 'Debugging enabled' ), 2143 2143 'test' => 'is_in_debug_mode', 2144 2144 ), 2145 'file_uploads' => array(2145 'file_uploads' => array( 2146 2146 'label' => __( 'File uploads' ), 2147 2147 'test' => 'file_uploads', 2148 ), 2149 'plugin_theme_auto_updates' => array( 2150 'label' => __( 'Plugin and theme auto-updates' ), 2151 'test' => 'plugin_theme_auto_updates', 2148 2152 ), 2149 2153 ),
Note: See TracChangeset
for help on using the changeset viewer.