From 447298f038d09b47bb956ed90a926262c49c535a Mon Sep 17 00:00:00 2001 From: westi Date: Mon, 9 Mar 2009 22:35:20 +0000 Subject: [PATCH] Attachment metadata is stored in the summary field in AtomPub requests. Fixes #9148 props josephscott. git-svn-id: http://svn.automattic.com/wordpress/trunk@10751 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-app.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-app.php b/wp-app.php index c791c4e71..e913286f0 100644 --- a/wp-app.php +++ b/wp-app.php @@ -705,7 +705,7 @@ EOD; extract($entry); $post_title = $parsed->title[1]; - $post_content = $parsed->content[1]; + $post_content = $parsed->summary[1]; $pubtimes = $this->get_publish_time($parsed->updated); $post_modified = $pubtimes[0]; $post_modified_gmt = $pubtimes[1];