diff --git a/wp-includes/embed-functions.php b/wp-includes/embed-functions.php index a9c1a9d1bd..b46d9b7151 100644 --- a/wp-includes/embed-functions.php +++ b/wp-includes/embed-functions.php @@ -332,10 +332,12 @@ function wp_embed_handler_video( $matches, $attr, $url, $rawattr ) { * * @since 4.4.0 * + * @see WP_oEmbed_Controller + * * @param WP_Query $wp_query The current WP_Query instance. */ function wp_oembed_parse_query( $wp_query ) { - $controller = new WP_oEmbed_Controller; + $controller = new WP_oEmbed_Controller(); $controller->parse_query( $wp_query ); } diff --git a/wp-includes/version.php b/wp-includes/version.php index 4d755ae811..26a6f48e97 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-34968'; +$wp_version = '4.4-alpha-34969'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.