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:54:01 -0500 |
commit | 7fc3c31fd31c0aab6ec8c7f16f41799e36c51238 (patch) | |
tree | 16c213cd1849318e34301dddafb62881cc4cd7ce | |
parent | 3dc73a4d5a199dc197ac8a361ba3e015afb94e3a (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 |