From 241addd9ababb5e2854512afd5cdd8682219d8a1 Mon Sep 17 00:00:00 2001 From: Dominik Schilling Date: Sun, 27 Jul 2014 17:16:17 +0000 Subject: [PATCH] Revert [28894] as it's currently unused in core. see #28487. Built from https://develop.svn.wordpress.org/trunk@29309 git-svn-id: http://core.svn.wordpress.org/trunk@29091 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/functions.php | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/wp-includes/functions.php b/wp-includes/functions.php index 80d38d590b..17016fcaff 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -3501,19 +3501,6 @@ function is_ssl() { return false; } -/** - * Determine if the scheme of the given URL is https. - * - * @since 4.0.0 - * - * @param string $url The URL. - * @return bool True if the given URL uses https, false if not (or if the URL - * is not valid). - */ -function is_https_url( $url ) { - return ( 'https' === parse_url( $url, PHP_URL_SCHEME ) ); -} - /** * Whether SSL login should be forced. *