Remove unused $t_time variable. props ocean90. fixes #18531.

git-svn-id: http://core.svn.wordpress.org/trunk@21880 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Andrew Nacin 2012-09-17 02:12:09 +00:00
parent 4a8bb5e3f8
commit db118bdee8
1 changed files with 1 additions and 2 deletions

View File

@ -275,9 +275,8 @@ foreach ( $columns as $column_name => $column_display_name ) {
case 'date':
if ( '0000-00-00 00:00:00' == $post->post_date ) {
$t_time = $h_time = __( 'Unpublished' );
$h_time = __( 'Unpublished' );
} else {
$t_time = get_the_time( __( 'Y/m/d g:i:s A' ) );
$m_time = $post->post_date;
$time = get_post_time( 'G', true, $post, false );
if ( ( abs( $t_diff = time() - $time ) ) < 86400 ) {