From 12ea157f2cc4a72a3a0d7e530f24b4c719088f06 Mon Sep 17 00:00:00 2001 From: John Blackbourn Date: Mon, 9 Jun 2014 22:26:27 +0000 Subject: [PATCH] Correct the deprecated function parameter in `url_is_accessable_via_ssl()`. See #19555. git-svn-id: https://develop.svn.wordpress.org/trunk@28710 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/deprecated.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/deprecated.php b/src/wp-includes/deprecated.php index dbdc7217bf..a52753e3cb 100644 --- a/src/wp-includes/deprecated.php +++ b/src/wp-includes/deprecated.php @@ -3471,7 +3471,7 @@ function format_to_post( $content ) { * @return bool Whether SSL access is available. */ function url_is_accessable_via_ssl( $url ) { - _deprecated_function( __FUNCTION__, '4.0', '' ); + _deprecated_function( __FUNCTION__, '4.0' ); $response = wp_remote_get( set_url_scheme( $url, 'https' ) );