From e75196a77b5712344e48456751bc93a6c13ac6ec Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Sat, 10 Sep 2005 18:39:40 +0000 Subject: [PATCH] Fix typo. git-svn-id: https://develop.svn.wordpress.org/trunk@2863 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/execute-pings.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/execute-pings.php b/wp-admin/execute-pings.php index cb2ec5f386..1cc0c1d46f 100644 --- a/wp-admin/execute-pings.php +++ b/wp-admin/execute-pings.php @@ -30,7 +30,7 @@ function execute_all_pings() { if($trackbacks = $wpdb->get_results("SELECT ID FROM $wpdb->posts WHERE TRIM(to_ping) != ''")) { foreach($trackbacks as $trackback) { //echo "trackback : $trackback->ID
"; - do_trackback($trackback->ID); + do_trackbacks($trackback->ID); } } }