From 8d561f56392f149825910d0b7e76b463b4ade320 Mon Sep 17 00:00:00 2001 From: Brian Miyaji Date: Sat, 8 Mar 2014 23:02:41 +1100 Subject: [PATCH] Display current team as check icon --- admin/hooks/manage-posts-columns.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/hooks/manage-posts-columns.php b/admin/hooks/manage-posts-columns.php index 67cbacdd..9d389948 100644 --- a/admin/hooks/manage-posts-columns.php +++ b/admin/hooks/manage-posts-columns.php @@ -80,7 +80,7 @@ function sportspress_manage_posts_custom_column( $column, $post_id ) { $team = get_post( $team_id ); echo $team->post_title; if ( $team_id == $current_team ): - echo ' (' . __( 'Current Team', 'sportspress' ) . ')'; + echo ''; endif; echo '
'; endforeach;