From df7be9cd8062e43bfc2751d569e965ad7daa72b2 Mon Sep 17 00:00:00 2001 From: John Blackbourn Date: Mon, 9 Jun 2014 22:27:14 +0000 Subject: [PATCH] Correct the deprecated function parameter in `url_is_accessable_via_ssl()`. See #19555. Built from https://develop.svn.wordpress.org/trunk@28710 git-svn-id: http://core.svn.wordpress.org/trunk@28526 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/deprecated.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/deprecated.php b/wp-includes/deprecated.php index dbdc7217bf..a52753e3cb 100644 --- a/wp-includes/deprecated.php +++ b/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' ) );