mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-22 00:58:46 +01:00
Site Health: Remove use of deprecated function from wp_is_https_supported()
.
Follow up to [56664]. Props peter8nss, debarghyabanerjee, sebastienserre, geekofshire, swissspidy, desrosj. Fixes #62252. See #58494. Built from https://develop.svn.wordpress.org/trunk@59517 git-svn-id: http://core.svn.wordpress.org/trunk@58903 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
15f2879461
commit
f7d4ea3ceb
@ -63,31 +63,33 @@ function wp_is_site_url_using_https() {
|
||||
/**
|
||||
* Checks whether HTTPS is supported for the server and domain.
|
||||
*
|
||||
* This function makes an HTTP request through `wp_get_https_detection_errors()`
|
||||
* to check for HTTPS support. As this process can be resource-intensive,
|
||||
* it should be used cautiously, especially in performance-sensitive environments,
|
||||
* to avoid potential latency issues.
|
||||
*
|
||||
* @since 5.7.0
|
||||
*
|
||||
* @return bool True if HTTPS is supported, false otherwise.
|
||||
*/
|
||||
function wp_is_https_supported() {
|
||||
$https_detection_errors = get_option( 'https_detection_errors' );
|
||||
$https_detection_errors = wp_get_https_detection_errors();
|
||||
|
||||
// If option has never been set by the Cron hook before, run it on-the-fly as fallback.
|
||||
if ( false === $https_detection_errors ) {
|
||||
wp_update_https_detection_errors();
|
||||
|
||||
$https_detection_errors = get_option( 'https_detection_errors' );
|
||||
}
|
||||
|
||||
// If there are no detection errors, HTTPS is supported.
|
||||
// If there are errors, HTTPS is not supported.
|
||||
return empty( $https_detection_errors );
|
||||
}
|
||||
|
||||
/**
|
||||
* Runs a remote HTTPS request to detect whether HTTPS supported, and stores potential errors.
|
||||
*
|
||||
* This internal function is called by a regular Cron hook to ensure HTTPS support is detected and maintained.
|
||||
* This function checks for HTTPS support by making an HTTP request. As this process can be resource-intensive,
|
||||
* it should be used cautiously, especially in performance-sensitive environments.
|
||||
* It is called when HTTPS support needs to be validated.
|
||||
*
|
||||
* @since 6.4.0
|
||||
* @access private
|
||||
*
|
||||
* @return array An array containing potential detection errors related to HTTPS, or an empty array if no errors are found.
|
||||
*/
|
||||
function wp_get_https_detection_errors() {
|
||||
/**
|
||||
|
@ -16,7 +16,7 @@
|
||||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.8-alpha-59516';
|
||||
$wp_version = '6.8-alpha-59517';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
Loading…
Reference in New Issue
Block a user