Date/Time: XML-RPC: Сalculate the proper offset for GMT in `wp.newPost`, `wp.editComment`, `mw.newPost`, `mw.editPost` when `post_date` or `comment_date` is set.
Previously, `post_date` or `comment_date` was assumed to be GMT, which is only true if the timezone string for the site matches GMT. Add unit tests. Props Rarst, smerriman, justdaiv, wonderboymusic, noyle. Fixes #30429. Built from https://develop.svn.wordpress.org/trunk@46864 git-svn-id: http://core.svn.wordpress.org/trunk@46664 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
098273f1d3
commit
1dcf3eef7a
|
@ -1469,8 +1469,8 @@ class wp_xmlrpc_server extends IXR_Server {
|
|||
$post_data['edit_date'] = false;
|
||||
|
||||
if ( ! empty( $dateCreated ) ) {
|
||||
$post_data['post_date'] = get_date_from_gmt( iso8601_to_datetime( $dateCreated ) );
|
||||
$post_data['post_date_gmt'] = iso8601_to_datetime( $dateCreated, 'GMT' );
|
||||
$post_data['post_date'] = iso8601_to_datetime( $dateCreated );
|
||||
$post_data['post_date_gmt'] = iso8601_to_datetime( $dateCreated, 'gmt' );
|
||||
|
||||
// Flag the post date to be edited.
|
||||
$post_data['edit_date'] = true;
|
||||
|
@ -3766,8 +3766,8 @@ class wp_xmlrpc_server extends IXR_Server {
|
|||
if ( ! empty( $content_struct['date_created_gmt'] ) ) {
|
||||
// We know this is supposed to be GMT, so we're going to slap that Z on there by force
|
||||
$dateCreated = rtrim( $content_struct['date_created_gmt']->getIso(), 'Z' ) . 'Z';
|
||||
$comment['comment_date'] = get_date_from_gmt( iso8601_to_datetime( $dateCreated ) );
|
||||
$comment['comment_date_gmt'] = iso8601_to_datetime( $dateCreated, 'GMT' );
|
||||
$comment['comment_date'] = get_date_from_gmt( $dateCreated );
|
||||
$comment['comment_date_gmt'] = iso8601_to_datetime( $dateCreated, 'gmt' );
|
||||
}
|
||||
|
||||
if ( isset( $content_struct['content'] ) ) {
|
||||
|
@ -5485,8 +5485,8 @@ class wp_xmlrpc_server extends IXR_Server {
|
|||
}
|
||||
|
||||
if ( ! empty( $dateCreated ) ) {
|
||||
$post_date = get_date_from_gmt( iso8601_to_datetime( $dateCreated ) );
|
||||
$post_date_gmt = iso8601_to_datetime( $dateCreated, 'GMT' );
|
||||
$post_date = iso8601_to_datetime( $dateCreated );
|
||||
$post_date_gmt = iso8601_to_datetime( $dateCreated, 'gmt' );
|
||||
} else {
|
||||
$post_date = '';
|
||||
$post_date_gmt = '';
|
||||
|
@ -5874,8 +5874,8 @@ class wp_xmlrpc_server extends IXR_Server {
|
|||
$edit_date = false;
|
||||
|
||||
if ( ! empty( $dateCreated ) ) {
|
||||
$post_date = get_date_from_gmt( iso8601_to_datetime( $dateCreated ) );
|
||||
$post_date_gmt = iso8601_to_datetime( $dateCreated, 'GMT' );
|
||||
$post_date = iso8601_to_datetime( $dateCreated );
|
||||
$post_date_gmt = iso8601_to_datetime( $dateCreated, 'gmt' );
|
||||
|
||||
// Flag the post date to be edited.
|
||||
$edit_date = true;
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.4-alpha-46862';
|
||||
$wp_version = '5.4-alpha-46864';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue