From 00c4cb176518b1029585da38e5a5bf1ee0995c79 Mon Sep 17 00:00:00 2001 From: Peter Westwood 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: https://develop.svn.wordpress.org/trunk@10751 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-app.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-app.php b/wp-app.php index c791c4e71b..e913286f04 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];