diff options
| author | Ivan Kohler <ivan@freeside.biz> | 2021-08-18 11:11:32 -0700 |
|---|---|---|
| committer | Ivan Kohler <ivan@freeside.biz> | 2021-08-18 11:11:32 -0700 |
| commit | 3787b82344ddd6447dc9074e95d7e18bf7148ccf (patch) | |
| tree | 22f459b8e4766ff99f02205fb7fc0dea3232e818 /httemplate/search/cust_main.html | |
| parent | d6e22939c76c15fe97a298ff2a57b1154d89438f (diff) | |
quiet warnings about CGI::param in list context
Diffstat (limited to 'httemplate/search/cust_main.html')
| -rwxr-xr-x | httemplate/search/cust_main.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/search/cust_main.html b/httemplate/search/cust_main.html index 58954bc86..34aad5405 100755 --- a/httemplate/search/cust_main.html +++ b/httemplate/search/cust_main.html @@ -70,7 +70,7 @@ for my $param ( @scalars ) { #lists for my $param (qw( classnum refnum pkg_classnum )) { - $search_hash{$param} = [ $cgi->param($param) ]; + $search_hash{$param} = [ $cgi->multi_param($param) ]; } my $params = $cgi->Vars; |
