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
This commit is contained in:
John Blackbourn 2014-06-09 22:26:27 +00:00
parent 7a220d7e95
commit 12ea157f2c

View File

@ -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' ) );