Index: wp-includes/class-wp-xmlrpc-server.php
===================================================================
--- wp-includes/class-wp-xmlrpc-server.php	(revision 18690)
+++ wp-includes/class-wp-xmlrpc-server.php	(working copy)
@@ -3084,12 +3084,17 @@
 			logIO('O', '(MW) ' . $errorString);
 			return new IXR_Error(500, $errorString);
 		}
+
+		$post_excerpt = isset( $data['post_excerpt'] ) ? $data['post_excerpt'] : '';
+		$post_content = isset( $data['post_content'] ) ? $data['post_content'] : '';
+
 		// Construct the attachment array
 		// attach to post_id 0
 		$post_id = 0;
 		$attachment = array(
 			'post_title' => $name,
-			'post_content' => '',
+			'post_excerpt' => $post_excerpt,
+			'post_content' => $post_content,
 			'post_type' => 'attachment',
 			'post_parent' => $post_id,
 			'post_mime_type' => $type,
