Index: comment.php
===================================================================
--- comment.php	(revision 6256)
+++ comment.php	(working copy)
@@ -752,6 +752,15 @@
 }
 
 
+// Don't self-ping by Michael D. Adams
+function remove_self_pings( &$links ) {
+	$home = get_option( 'home' );
+	foreach ( $links as $l => $link )
+		if ( 0 === strpos( $link, $home ) )
+			unset($links[$l]);
+}
+
+
 function privacy_ping_filter($sites) {
 	if ( '0' != get_option('blog_public') )
 		return $sites;
Index: default-filters.php
===================================================================
--- default-filters.php	(revision 6256)
+++ default-filters.php	(working copy)
@@ -133,6 +133,7 @@
 add_filter('comment_flood_filter', 'wp_throttle_comment_flood', 10, 3);
 add_filter('pre_comment_content', 'wp_rel_nofollow', 15);
 add_filter('comment_email', 'antispambot');
+add_filter('pre_ping', 'remove_self_pings');
 
 // Actions
 add_action('wp_head', 'rsd_link');
