Compare GMT to GMT. see #24425.

git-svn-id: http://core.svn.wordpress.org/trunk@24663 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Andrew Nacin 2013-07-11 20:57:47 +00:00
parent be7a7a2787
commit 25d9d478ac
1 changed files with 2 additions and 2 deletions

View File

@ -64,7 +64,7 @@ function wp_get_revision_ui_diff( $post, $compare_from, $compare_to ) {
function wp_prepare_revisions_for_js( $post, $selected_revision_id ) { function wp_prepare_revisions_for_js( $post, $selected_revision_id ) {
$post = get_post( $post ); $post = get_post( $post );
$revisions = array(); $revisions = array();
$current = current_time( 'timestamp' ); $now_gmt = time();
$revisions = wp_get_post_revisions( $post->ID ); $revisions = wp_get_post_revisions( $post->ID );
@ -91,7 +91,7 @@ function wp_prepare_revisions_for_js( $post, $selected_revision_id ) {
'date' => date_i18n( __( 'M j, Y @ G:i' ), $modified_gmt ), 'date' => date_i18n( __( 'M j, Y @ G:i' ), $modified_gmt ),
'dateShort' => date_i18n( _x( 'j M @ G:i', 'revision date short format' ), $modified_gmt ), 'dateShort' => date_i18n( _x( 'j M @ G:i', 'revision date short format' ), $modified_gmt ),
'dateUnix' => $modified_gmt, 'dateUnix' => $modified_gmt,
'timeAgo' => sprintf( __( '%s ago' ), human_time_diff( $modified_gmt, $current ) ), 'timeAgo' => sprintf( __( '%s ago' ), human_time_diff( $modified_gmt, $now_gmt ) ),
'autosave' => wp_is_post_autosave( $revision ), 'autosave' => wp_is_post_autosave( $revision ),
'current' => $revision->post_modified_gmt === $post->post_modified_gmt, 'current' => $revision->post_modified_gmt === $post->post_modified_gmt,
'restoreUrl' => urldecode( $restore_link ), 'restoreUrl' => urldecode( $restore_link ),