From 7290e527e72dba0f00d40b5b02ad41dae7ed5d52 Mon Sep 17 00:00:00 2001 From: markjaquith 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: http://svn.automattic.com/wordpress/trunk@16740 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- 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 b066622ba..afda95886 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