From b0c7058037b6d70dedb444a687fd673ac4817ccc Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sat, 31 Oct 2015 15:37:10 +0000 Subject: [PATCH] Embeds: Fix typo in `oembed_request_post_id` filter DocBlock. Props swissspidy. See #34523. git-svn-id: https://develop.svn.wordpress.org/trunk@35470 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/class-wp-oembed-controller.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wp-includes/class-wp-oembed-controller.php b/src/wp-includes/class-wp-oembed-controller.php index 0db5340e01..409cf18888 100644 --- a/src/wp-includes/class-wp-oembed-controller.php +++ b/src/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'] );