diff --git a/wp-admin/includes/ajax-actions.php b/wp-admin/includes/ajax-actions.php index 7678a7fd15..b576badc7f 100644 --- a/wp-admin/includes/ajax-actions.php +++ b/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']; } diff --git a/wp-includes/version.php b/wp-includes/version.php index 142eab9ecf..95fed6bf33 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.2-alpha-31625'; +$wp_version = '4.2-alpha-31626'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.