From 4ff9b0520b987801b68efbafe772dcd83e51b787 Mon Sep 17 00:00:00 2001 From: Mark Jaquith Date: Mon, 6 Dec 2010 03:38:27 +0000 Subject: [PATCH] Pass post ID to embed_oembed_html filter to avoid global variable incantations. props filosofo. fixes #15491 git-svn-id: https://develop.svn.wordpress.org/trunk@16740 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/media.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/media.php b/wp-includes/media.php index b066622bac..afda958868 100644 --- a/wp-includes/media.php +++ b/wp-includes/media.php @@ -1190,7 +1190,7 @@ class WP_Embed { return $this->maybe_make_link( $url ); if ( !empty($cache) ) - return apply_filters( 'embed_oembed_html', $cache, $url, $attr ); + return apply_filters( 'embed_oembed_html', $cache, $url, $attr, $post_ID ); } // Use oEmbed to get the HTML @@ -1203,7 +1203,7 @@ class WP_Embed { // If there was a result, return it if ( $html ) - return apply_filters( 'embed_oembed_html', $html, $url, $attr ); + return apply_filters( 'embed_oembed_html', $html, $url, $attr, $post_ID ); } // Still unknown