Fix typo.

git-svn-id: https://develop.svn.wordpress.org/trunk@2863 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2005-09-10 18:39:40 +00:00
parent ca1272ec79
commit e75196a77b
1 changed files with 1 additions and 1 deletions

View File

@ -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<br/>";
do_trackback($trackback->ID);
do_trackbacks($trackback->ID);
}
}
}