Ticket #39016: 39016.patch
File 39016.patch, 2.1 KB (added by , 8 years ago) |
---|
-
wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php
1206 1206 ), 1207 1207 ), 1208 1208 'date' => array( 1209 'description' => __( 'The date the object was published .' ),1209 'description' => __( 'The date the object was published, in the site's timezone.' ), 1210 1210 'type' => 'string', 1211 1211 'format' => 'date-time', 1212 1212 'context' => array( 'view', 'edit', 'embed' ), 1213 1213 ), 1214 1214 'date_gmt' => array( 1215 'description' => __( 'The date the object was published as GMT.' ),1215 'description' => __( 'The date the object was published, as GMT.' ), 1216 1216 'type' => 'string', 1217 1217 'format' => 'date-time', 1218 1218 'context' => array( 'view', 'edit' ), -
wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php
404 404 'context' => array( 'view', 'edit', 'embed' ), 405 405 ), 406 406 'date' => array( 407 'description' => __( 'The date the object was published.'),407 'description' => __( "The date the object was published, in the site's timezone." ), 408 408 'type' => 'string', 409 409 'format' => 'date-time', 410 410 'context' => array( 'view', 'edit', 'embed' ), … … 426 426 'context' => array( 'view', 'edit', 'embed' ), 427 427 ), 428 428 'modified' => array( 429 'description' => __( 'The date the object was last modified.'),429 'description' => __( "The date the object was last modified, in the site's timezone." ), 430 430 'type' => 'string', 431 431 'format' => 'date-time', 432 432 'context' => array( 'view', 'edit' ),