From 8199ae99aa542532fcd39dfc15e6643371c473ee Mon Sep 17 00:00:00 2001 From: nacin Date: Tue, 6 Mar 2012 22:44:44 +0000 Subject: [PATCH] Add $post_ID context to the pre_ping filter. props alexkingorg, devesine. fixes #18506. git-svn-id: http://svn.automattic.com/wordpress/trunk@20127 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/comment.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/comment.php b/wp-includes/comment.php index 5a526305f..c522cf53e 100644 --- a/wp-includes/comment.php +++ b/wp-includes/comment.php @@ -1816,7 +1816,7 @@ function pingback($content, $post_ID) { endif; endforeach; - do_action_ref_array('pre_ping', array(&$post_links, &$pung)); + do_action_ref_array( 'pre_ping', array( &$post_links, &$pung, $post_ID ) ); foreach ( (array) $post_links as $pagelinkedto ) { $pingback_server_url = discover_pingback_server_uri( $pagelinkedto );