From 33f442f17be4a35e148e622a1401bf6f0dd871f2 Mon Sep 17 00:00:00 2001 From: Rachel Baker Date: Sun, 4 Dec 2016 20:24:54 +0000 Subject: [PATCH] REST API: Merge similar date strings in the revisions and comments controllers. Props ramiy. Fixes #39016. git-svn-id: https://develop.svn.wordpress.org/trunk@39488 602fd350-edb4-49c9-b593-d223f7449a82 --- .../rest-api/endpoints/class-wp-rest-comments-controller.php | 4 ++-- .../rest-api/endpoints/class-wp-rest-revisions-controller.php | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php b/src/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php index 973af4b505..a6044459b4 100644 --- a/src/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php +++ b/src/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php @@ -1202,13 +1202,13 @@ class WP_REST_Comments_Controller extends WP_REST_Controller { ), ), 'date' => array( - 'description' => __( 'The date the object was published.' ), + 'description' => __( "The date the object was published, in the site's timezone." ), 'type' => 'string', 'format' => 'date-time', 'context' => array( 'view', 'edit', 'embed' ), ), 'date_gmt' => array( - 'description' => __( 'The date the object was published as GMT.' ), + 'description' => __( 'The date the object was published, as GMT.' ), 'type' => 'string', 'format' => 'date-time', 'context' => array( 'view', 'edit' ), diff --git a/src/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php b/src/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php index 3b45d9f987..39ef8fe818 100644 --- a/src/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php +++ b/src/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php @@ -404,7 +404,7 @@ class WP_REST_Revisions_Controller extends WP_REST_Controller { 'context' => array( 'view', 'edit', 'embed' ), ), 'date' => array( - 'description' => __( 'The date the object was published.' ), + 'description' => __( "The date the object was published, in the site's timezone." ), 'type' => 'string', 'format' => 'date-time', 'context' => array( 'view', 'edit', 'embed' ), @@ -426,7 +426,7 @@ class WP_REST_Revisions_Controller extends WP_REST_Controller { 'context' => array( 'view', 'edit', 'embed' ), ), 'modified' => array( - 'description' => __( 'The date the object was last modified.' ), + 'description' => __( "The date the object was last modified, in the site's timezone." ), 'type' => 'string', 'format' => 'date-time', 'context' => array( 'view', 'edit' ),