diff options
| -rw-r--r-- | FS/FS/cust_main.pm | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/FS/FS/cust_main.pm b/FS/FS/cust_main.pm index 86962ce61..6ca32871d 100644 --- a/FS/FS/cust_main.pm +++ b/FS/FS/cust_main.pm @@ -1016,7 +1016,7 @@ Always returns a list: an empty list on success or a list of errors.  sub cancel {    my $self = shift; -  grep { $_->cancel(@_) } $self->ncancelled_pkgs; +  grep { $_ } map { $_->cancel(@_) } $self->ncancelled_pkgs;  }  =item agent | 
