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:
parent
4a8bb5e3f8
commit
db118bdee8
|
@ -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 ) {
|
||||
|
|
Loading…
Reference in New Issue