diff options
author | ivan <ivan> | 2011-08-18 23:46:03 +0000 |
---|---|---|
committer | ivan <ivan> | 2011-08-18 23:46:03 +0000 |
commit | f8d8e9ec09981e8529a60de419e2cc70326256cc (patch) | |
tree | cfd147473613c515946bea671511b2dc9f2956c4 /FS | |
parent | 6aa5ef852018ddd7136beb8c750d4d895b1f7584 (diff) |
attempt fixing "multiple states" links, RT#13922
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/cust_pkg.pm | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/FS/FS/cust_pkg.pm b/FS/FS/cust_pkg.pm index 4a66ddcc6..8055a10c0 100644 --- a/FS/FS/cust_pkg.pm +++ b/FS/FS/cust_pkg.pm @@ -3012,16 +3012,13 @@ sub search { } @report_option; } - foreach my $any ( grep /^report_option_any/ keys %$params ) { + foreach my $any ( grep /^report_option_any/, keys %$params ) { my @report_option_any = (); - if ( exists($params->{$any}) ) { - if ( ref($params->{$any}) eq 'ARRAY' ) { - @report_option_any = @{ $params->{$any} }; - } elsif ( $params->{$any} =~ /^([,\d]*)$/ ) { - @report_option_any = split(',', $1); - } - + if ( ref($params->{$any}) eq 'ARRAY' ) { + @report_option_any = @{ $params->{$any} }; + } elsif ( $params->{$any} =~ /^([,\d]*)$/ ) { + @report_option_any = split(',', $1); } if (@report_option_any) { |