From 214836a843b66cbcb44f93e2ae92a267ab98bce1 Mon Sep 17 00:00:00 2001 From: Scott Taylor Date: Thu, 5 Mar 2015 16:26:00 +0000 Subject: [PATCH] After [31620], when checking for HTTP URLs, make sure we are checking the shortcode body instead of an indexed attribute. See #31139. git-svn-id: https://develop.svn.wordpress.org/trunk@31626 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/includes/ajax-actions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wp-admin/includes/ajax-actions.php b/src/wp-admin/includes/ajax-actions.php index 7678a7fd15..b576badc7f 100644 --- a/src/wp-admin/includes/ajax-actions.php +++ b/src/wp-admin/includes/ajax-actions.php @@ -2711,8 +2711,8 @@ function wp_ajax_parse_embed() { preg_match( '/' . get_shortcode_regex() . '/s', $shortcode, $matches ); $atts = shortcode_parse_atts( $matches[3] ); - if ( ! empty( $atts[5] ) ) { - $url = $atts[5]; + if ( ! empty( $matches[5] ) ) { + $url = $matches[5]; } elseif ( ! empty( $atts['src'] ) ) { $url = $atts['src']; }