From e39c8e0706901198ee1ea58d09f5b2ea15607d0d Mon Sep 17 00:00:00 2001 From: saxmatt Date: Thu, 17 Feb 2005 09:03:23 +0000 Subject: [PATCH] Trackback ending http://mosquito.wordpress.org/view.php?id=884 git-svn-id: http://svn.automattic.com/wordpress/trunk@2361 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/functions.php b/wp-includes/functions.php index 74ab41dd2..c70024ab8 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -621,7 +621,7 @@ function trackback($trackback_url, $title, $excerpt, $ID) { $http_request .= 'Content-Type: application/x-www-form-urlencoded; charset='.get_settings('blog_charset')."\r\n"; $http_request .= 'Content-Length: '.strlen($query_string)."\r\n"; $http_request .= "User-Agent: WordPress/" . get_settings('version'); - $http_request .= "\r\n"; + $http_request .= "\r\n\r\n"; $http_request .= $query_string; if ( '' == $trackback_url['port'] ) $trackback_url['port'] = 80;