diff --git a/admin/admin-post-types.php b/admin/admin-post-types.php
index db2b1f7653d..467c17b1986 100644
--- a/admin/admin-post-types.php
+++ b/admin/admin-post-types.php
@@ -216,7 +216,7 @@ function woocommerce_custom_product_columns($column) {
$h_time = mysql2date( __( 'Y/m/d' ), $m_time );
endif;
- echo '' . apply_filters( 'post_date_column_time', $h_time, $post, $column_name, $mode ) . '
';
+ echo '' . apply_filters( 'post_date_column_time', $h_time, $post ) . '
';
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 '' . apply_filters( 'post_date_column_time', $h_time, $post, $column_name, $mode ) . '';
+ echo '' . apply_filters( 'post_date_column_time', $h_time, $post ) . '';
break;
}