From 99180a09ba2f331b3a56c874f0ead1395011637c Mon Sep 17 00:00:00 2001 From: Gary Pendergast Date: Thu, 19 Nov 2015 05:01:07 +0000 Subject: [PATCH] Embeds: Remove the `allow_insecure_embeds` filter. This reverts [35640]. On further reflection, it really didn't do what it said it did. Fixes #34588. git-svn-id: https://develop.svn.wordpress.org/trunk@35702 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/class-wp-embed.php | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/wp-includes/class-wp-embed.php b/src/wp-includes/class-wp-embed.php index 5e25e01892..730fc4fc91 100644 --- a/src/wp-includes/class-wp-embed.php +++ b/src/wp-includes/class-wp-embed.php @@ -143,18 +143,6 @@ class WP_Embed { return ''; } - /** - * Optionally allow or block non-SSL embeds. - * - * @since 4.4.0 - * - * @param bool $allowed Flag to determine if non-SSL embeds should be allowed. Default true. - * @param string $url The URL being embedded. - */ - if ( 0 !== strpos( $url, 'https://' ) && ! apply_filters( 'allow_insecure_embeds', true, $url ) ) { - return false; - } - $rawattr = $attr; $attr = wp_parse_args( $attr, wp_embed_defaults( $url ) );