mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-22 00:01:27 +01:00
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:
parent
78d846289f
commit
dd1098e7c5
@ -4931,8 +4931,8 @@ class wp_xmlrpc_server extends IXR_Server {
|
||||
$post_date = get_date_from_gmt(iso8601_to_datetime($dateCreated));
|
||||
$post_date_gmt = iso8601_to_datetime($dateCreated, 'GMT');
|
||||
} else {
|
||||
$post_date = current_time('mysql');
|
||||
$post_date_gmt = current_time('mysql', 1);
|
||||
$post_date = '';
|
||||
$post_date_gmt = '';
|
||||
}
|
||||
|
||||
$post_category = array();
|
||||
|
@ -4,7 +4,7 @@
|
||||
*
|
||||
* @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.
|
||||
|
Loading…
Reference in New Issue
Block a user