diff --git a/wp-includes/class-wp-oembed-controller.php b/wp-includes/class-wp-oembed-controller.php index d825c415d2..e6dae0670d 100644 --- a/wp-includes/class-wp-oembed-controller.php +++ b/wp-includes/class-wp-oembed-controller.php @@ -159,6 +159,7 @@ final class WP_oEmbed_Controller { $args = $request->get_params(); // Serve oEmbed data from cache if set. + unset( $args['_wpnonce'] ); $cache_key = 'oembed_' . md5( serialize( $args ) ); $data = get_transient( $cache_key ); if ( ! empty( $data ) ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index 1524968e92..c1e9abdd38 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.9-alpha-41034'; +$wp_version = '4.9-alpha-41035'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.