From c66509851cd7c9900fca86601c959f370f2a41ba Mon Sep 17 00:00:00 2001 From: ryan Date: Sat, 10 Sep 2005 18:39:40 +0000 Subject: [PATCH] Fix typo. git-svn-id: http://svn.automattic.com/wordpress/trunk@2863 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- 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 cb2ec5f38..1cc0c1d46 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); } } }