Skip to content

Commit

Permalink
Fix #10703: Don't show attachment_count column in CSV output
Browse files Browse the repository at this point in the history
It is a little complicated to show the attachment_count column in the
CSV output at the moment. Therefore we disable this column from being
usable until such time as someone wants to spend time fixing it up
properly. By disabling the column, we prevent users from enabling what
is currently a broken/non-implemented column.
  • Loading branch information
davidhicks committed Oct 5, 2009
1 parent e0ca242 commit c8f6517
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions core/helper_api.php
Expand Up @@ -381,6 +381,7 @@ function helper_get_columns_to_view( $p_columns_target = COLUMNS_TARGET_VIEW_PAG
$t_keys_to_remove[] = 'selection';
$t_keys_to_remove[] = 'edit';
$t_keys_to_remove[] = 'bugnotes_count';
$t_keys_to_remove[] = 'attachment_count';
$t_keys_to_remove[] = 'overdue';
}

Expand Down

0 comments on commit c8f6517

Please sign in to comment.