Index: wp-includes/class-wp-xmlrpc-server.php
===================================================================
--- wp-includes/class-wp-xmlrpc-server.php	(revision 44854)
+++ wp-includes/class-wp-xmlrpc-server.php	(working copy)
@@ -495,7 +495,7 @@
 			$page_date_gmt = mysql2date('Ymd\TH:i:s', $page->post_date_gmt, false);
 
 			// For drafts use the GMT version of the date
-			if ( $page->post_status == 'draft' )
+			if ( in_array( $page->post_status, array( 'draft', 'pending', 'auto-draft' ) ) )
 				$page_date_gmt = get_gmt_from_date( mysql2date( 'Y-m-d H:i:s', $page->post_date ), 'Ymd\TH:i:s' );
 
 			// Pull the categories info together.
@@ -761,7 +761,7 @@
 			$page_list[$i]->date_created_gmt = new IXR_Date($post_date_gmt);
 
 			// For drafts use the GMT version of the date
-			if ( $page_list[$i]->post_status == 'draft' ) {
+			if ( in_array( $page_list[$i]->post_status, array( 'draft', 'pending', 'auto-draft' ) ) ) {
 				$page_list[$i]->date_created_gmt = get_gmt_from_date( mysql2date( 'Y-m-d H:i:s', $page_list[$i]->post_date ), 'Ymd\TH:i:s' );
 				$page_list[$i]->date_created_gmt = new IXR_Date( $page_list[$i]->date_created_gmt );
 			}
@@ -2780,7 +2780,7 @@
 			$post_date_gmt = mysql2date('Ymd\TH:i:s', $postdata['post_date_gmt'], false);
 
 			// For drafts use the GMT version of the post date
-			if ( $postdata['post_status'] == 'draft' )
+			if ( in_array( $postdata['post_status'], array( 'draft', 'pending', 'auto-draft' ) ) )
 				$post_date_gmt = get_gmt_from_date( mysql2date( 'Y-m-d H:i:s', $postdata['post_date'] ), 'Ymd\TH:i:s' );
 
 			$categories = array();
@@ -2906,7 +2906,7 @@
 			$post_date_gmt = mysql2date('Ymd\TH:i:s', $entry['post_date_gmt'], false);
 
 			// For drafts use the GMT version of the date
-			if ( $entry['post_status'] == 'draft' )
+			if ( in_array( $entry['post_status'], array( 'draft', 'pending', 'auto-draft' ) ) )
 				$post_date_gmt = get_gmt_from_date( mysql2date( 'Y-m-d H:i:s', $entry['post_date'] ), 'Ymd\TH:i:s' );
 
 			$categories = array();
@@ -3157,7 +3157,7 @@
 			$post_date_gmt = mysql2date('Ymd\TH:i:s', $entry['post_date_gmt'], false);
 
 			// For drafts use the GMT version of the date
-			if ( $entry['post_status'] == 'draft' )
+			if ( in_array( $entry['post_status'], array( 'draft', 'pending', 'auto-draft' ) ) )
 				$post_date_gmt = get_gmt_from_date( mysql2date( 'Y-m-d H:i:s', $entry['post_date'] ), 'Ymd\TH:i:s' );
 
 			$struct[] = array(