XML-RPC: In `wp_xmlrpc_server::mw_newPost()`, if `$dateCreated` is not set, don't set `post_date` and `post_date_gmt`. It calls `wp_insert_post()`, which will handle it correctly. The problem was drafts being created and GMT date being set. It shouldn't be.

Adds unit test.

Fixes #16985.

Built from https://develop.svn.wordpress.org/trunk@34572


git-svn-id: http://core.svn.wordpress.org/trunk@34536 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Scott Taylor 2015-09-26 03:38:25 +00:00
parent 78d846289f
commit dd1098e7c5
2 changed files with 3 additions and 3 deletions

View File

@ -4931,8 +4931,8 @@ class wp_xmlrpc_server extends IXR_Server {
$post_date = get_date_from_gmt(iso8601_to_datetime($dateCreated)); $post_date = get_date_from_gmt(iso8601_to_datetime($dateCreated));
$post_date_gmt = iso8601_to_datetime($dateCreated, 'GMT'); $post_date_gmt = iso8601_to_datetime($dateCreated, 'GMT');
} else { } else {
$post_date = current_time('mysql'); $post_date = '';
$post_date_gmt = current_time('mysql', 1); $post_date_gmt = '';
} }
$post_category = array(); $post_category = array();

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '4.4-alpha-34571'; $wp_version = '4.4-alpha-34572';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.