From fd890d1fb44d9496f4c918f65f96fd9e2e8eff5d Mon Sep 17 00:00:00 2001 From: westi Date: Thu, 3 Apr 2008 20:56:48 +0000 Subject: [PATCH] Don't add new lines around the tag when posting over xmlrpc. Fixes #6016 props josephscott and redsweater. git-svn-id: http://svn.automattic.com/wordpress/trunk@7599 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- xmlrpc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xmlrpc.php b/xmlrpc.php index c04abed0a..ea8350e0e 100644 --- a/xmlrpc.php +++ b/xmlrpc.php @@ -1296,7 +1296,7 @@ class wp_xmlrpc_server extends IXR_Server { } if ($post_more) { - $post_content = $post_content . "\n\n" . $post_more; + $post_content = $post_content . "" . $post_more; } $to_ping = $content_struct['mt_tb_ping_urls']; @@ -1565,7 +1565,7 @@ class wp_xmlrpc_server extends IXR_Server { } if ($post_more) { - $post_content = $post_content . "\n\n" . $post_more; + $post_content = $post_content . "" . $post_more; } $to_ping = $content_struct['mt_tb_ping_urls'];