From ca59a472c861effb94f1b050ae8dacd3cc07c1fd Mon Sep 17 00:00:00 2001 From: ryan Date: Tue, 5 Jan 2010 15:50:30 +0000 Subject: [PATCH] Restore [10490], part of which was accidentally reverted. git-svn-id: http://svn.automattic.com/wordpress/trunk@12601 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/post-template.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/post-template.php b/wp-includes/post-template.php index a0d1e309c..3c87ba884 100644 --- a/wp-includes/post-template.php +++ b/wp-includes/post-template.php @@ -1210,7 +1210,7 @@ function wp_post_revision_title( $revision, $link = true ) { /* translators: 1: date */ $currentf = __( '%1$s [Current Revision]' ); - $date = date_i18n( $datef, strtotime( $revision->post_modified_gmt . ' +0000' ) ); + $date = date_i18n( $datef, strtotime( $revision->post_modified ) ); if ( $link && current_user_can( 'edit_post', $revision->ID ) && $link = get_edit_post_link( $revision->ID ) ) $date = "$date";