From 64fdde928a89907501c1ee7c334d6d3760c34f31 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sat, 31 Oct 2015 15:38:25 +0000 Subject: [PATCH] Embeds: Fix typo in `oembed_request_post_id` filter DocBlock. Props swissspidy. See #34523. Built from https://develop.svn.wordpress.org/trunk@35470 git-svn-id: http://core.svn.wordpress.org/trunk@35434 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-wp-oembed-controller.php | 4 ++-- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-includes/class-wp-oembed-controller.php b/wp-includes/class-wp-oembed-controller.php index 0db5340e01..409cf18888 100644 --- a/wp-includes/class-wp-oembed-controller.php +++ b/wp-includes/class-wp-oembed-controller.php @@ -67,12 +67,12 @@ final class WP_oEmbed_Controller { $post_id = url_to_postid( $request['url'] ); /** - * Filter the determined post id. + * Filter the determined post ID. * * @since 4.4.0 * * @param int $post_id The post ID. - * @param string $url The requestd URL. + * @param string $url The requested URL. */ $post_id = apply_filters( 'oembed_request_post_id', $post_id, $request['url'] ); diff --git a/wp-includes/version.php b/wp-includes/version.php index d81de0b7a8..7ea431c912 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-beta2-35469'; +$wp_version = '4.4-beta2-35470'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.