diff options
author | Jonathan Prykop <jonathan@freeside.biz> | 2016-05-13 22:39:07 -0500 |
---|---|---|
committer | Jonathan Prykop <jonathan@freeside.biz> | 2016-05-13 22:39:07 -0500 |
commit | f65410488a46be760bacf0e8d7673ba1e71be1fb (patch) | |
tree | 99594d1599b6468a1d1dbaab93a72de9094700ed | |
parent | a21d07037590cccd5ac5c572f5d28f062c622968 (diff) |
Bug fix, fallout from #36741 commit 11df448b, discovered/fixed while testing #41394
-rw-r--r-- | httemplate/search/cust_event.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/search/cust_event.html b/httemplate/search/cust_event.html index 122bee09b..ad953e30d 100644 --- a/httemplate/search/cust_event.html +++ b/httemplate/search/cust_event.html @@ -157,7 +157,7 @@ die "access denied" || $cgi->param('pkgnum') =~ /^(\d+)$/ ); -my @statuses = $cgi->multi_param('event_status'); +my @statuses = $cgi->param('event_status'); my $title = 'Billing events'; if ( $statuses[0] eq 'failed' and !defined($statuses[1]) ) { # tweak the title if we're showing only failed events |