diff --git a/modules/story-budget/story-budget.php b/modules/story-budget/story-budget.php index 203feb398..29b523b2d 100644 --- a/modules/story-budget/story-budget.php +++ b/modules/story-budget/story-budget.php @@ -518,8 +518,7 @@ function term_column_default( $post, $column_name, $parent_term ) { return $output; break; case 'post_modified': - $modified_time_gmt = strtotime( $post->post_modified_gmt . " GMT" ); - return $this->timesince( $modified_time_gmt ); + return sprintf( esc_html__( '%s ago', 'edit-flow' ), human_time_diff( get_the_time( 'U', $post->ID ), current_time( 'timestamp' ) ) ); break; default: break;