This commit is contained in:
Mike Jolley 2011-09-27 09:16:37 +01:00
parent 8b11ed7d46
commit 17ebf59722
1 changed files with 2 additions and 2 deletions

View File

@ -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' );
@ -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;
}