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
This commit is contained in:
Sergey Biryukov 2015-10-31 15:38:25 +00:00
parent d5937d6a2c
commit 64fdde928a
2 changed files with 3 additions and 3 deletions

View File

@ -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'] );

View File

@ -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.