Fixed custom filter so only "visible" fields show.

This commit is contained in:
Frank Dillon 2006-04-25 18:52:47 +00:00
parent abae2d6a29
commit 8e219cdc75

View file

@ -114,6 +114,7 @@ sub _getFieldHash {
# automatically.
my $fieldList = $self->getEventMetaDataArrayRef;
foreach my $field (@{$fieldList}) {
next unless $field->{visible};
my $dataType = $field->{dataType};
my $compare = $self->_matchTypes($dataType);
my $type;