Ticket #40860: 40860.patch
File 40860.patch, 678 bytes (added by , 8 years ago) |
---|
-
src/wp-admin/includes/class-wp-posts-list-table.php
981 981 } else { 982 982 $t_time = get_the_time( __( 'Y/m/d g:i:s a' ) ); 983 983 $m_time = $post->post_date; 984 $time = get_post_time( 'G', true, $post ); 984 if ( 'publish' === $post->post_status || 'future' === $post->post_status ) { 985 $time = get_post_time( 'G', true, $post ); 986 } else { 987 $time = get_post_modified_time( 'G', true, $post ); 988 } 985 989 986 990 $time_diff = time() - $time; 987 991