From 4415c75743374afd8fe91fe58844c2491cd14166 Mon Sep 17 00:00:00 2001 From: Peter Westwood 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: https://develop.svn.wordpress.org/trunk@7599 602fd350-edb4-49c9-b593-d223f7449a82 --- xmlrpc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xmlrpc.php b/xmlrpc.php index c04abed0af..ea8350e0e5 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'];