Skip to content

Commit

Permalink
Make ACM_WP_List_Table output any columns that were set via filter
Browse files Browse the repository at this point in the history
  • Loading branch information
rinatkhaziev committed Oct 9, 2012
1 parent b5209b9 commit cd41047
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions common/lib/acm-wp-list-table.php
Expand Up @@ -145,6 +145,9 @@ function column_default( $item, $column_name ) {
return esc_html( $item['priority'] );
break;
default:
// Handle custom columns, if any
if ( isset( $item['url_vars'][$column_name] ) )
return esc_html( $item['url_vars'][$column_name] );
break;
}

Expand Down

0 comments on commit cd41047

Please sign in to comment.