Call time pass by reference not allowed. Use the array trick. fixes #1583

git-svn-id: https://develop.svn.wordpress.org/trunk@2798 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2005-08-20 02:01:44 +00:00
parent 20dff781dd
commit 91c19c4060
1 changed files with 1 additions and 1 deletions

View File

@ -447,7 +447,7 @@ function pingback($content, $post_ID) {
$post_links[] = $link_test;
elseif(($test['path'] != '/') && ($test['path'] != ''))
$post_links[] = $link_test;
do_action('pre_ping', &$post_links, &$pung);
do_action('pre_ping', array(&$post_links, &$pung));
endif;
endforeach;