Skip to content

Commit

Permalink
Notices
Browse files Browse the repository at this point in the history
  • Loading branch information
mikejolley committed Sep 27, 2011
1 parent 8b11ed7 commit 17ebf59
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions admin/admin-post-types.php
Expand Up @@ -216,7 +216,7 @@ function woocommerce_custom_product_columns($column) {
$h_time = mysql2date( __( 'Y/m/d' ), $m_time );
endif;

echo '<abbr title="' . $t_time . '">' . apply_filters( 'post_date_column_time', $h_time, $post, $column_name, $mode ) . '</abbr><br />';
echo '<abbr title="' . $t_time . '">' . apply_filters( 'post_date_column_time', $h_time, $post ) . '</abbr><br />';

if ( 'publish' == $post->post_status ) :
_e( 'Published' );
Expand Down Expand Up @@ -448,7 +448,7 @@ function woocommerce_custom_order_columns($column) {
$h_time = mysql2date( __( 'Y/m/d' ), $m_time );
endif;

echo '<abbr title="' . $t_time . '">' . apply_filters( 'post_date_column_time', $h_time, $post, $column_name, $mode ) . '</abbr>';
echo '<abbr title="' . $t_time . '">' . apply_filters( 'post_date_column_time', $h_time, $post ) . '</abbr>';

break;
}
Expand Down

0 comments on commit 17ebf59

Please sign in to comment.