diff --git src/wp-admin/includes/revision.php src/wp-admin/includes/revision.php
index 9edf52d2a0..5a765cb8da 100644
|
|
function wp_prepare_revisions_for_js( $post, $selected_revision_id, $from = null |
166 | 166 | |
167 | 167 | foreach ( $revisions as $revision ) { |
168 | 168 | $modified = strtotime( $revision->post_modified ); |
169 | | $modified_gmt = strtotime( $revision->post_modified_gmt ); |
| 169 | $modified_gmt = strtotime( $revision->post_modified_gmt . ' +0000' ); |
170 | 170 | if ( $can_restore ) { |
171 | 171 | $restore_link = str_replace( '&', '&', wp_nonce_url( |
172 | 172 | add_query_arg( |