[freeside-commits] branch FREESIDE_4_BRANCH updated. 0c1bbe3f62b483feb841b8b958dc468e1c457c45
Ivan Kohler
ivan at freeside.biz
Wed Apr 27 12:18:47 PDT 2022
The branch, FREESIDE_4_BRANCH has been updated
via 0c1bbe3f62b483feb841b8b958dc468e1c457c45 (commit)
from 32e9b8146661a5bc6b340b09dacc8a70813555f6 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 0c1bbe3f62b483feb841b8b958dc468e1c457c45
Author: Ivan Kohler <ivan at freeside.biz>
Date: Wed Apr 27 12:18:46 2022 -0700
quiet warnings about CGI::param in list context
diff --git a/httemplate/edit/process/cust_main.cgi b/httemplate/edit/process/cust_main.cgi
index 18017fdb9..d4578d296 100755
--- a/httemplate/edit/process/cust_main.cgi
+++ b/httemplate/edit/process/cust_main.cgi
@@ -62,7 +62,7 @@ $cgi->param('duplicate_of_custnum') =~ /^(\d+)$/;
my $duplicate_of = $1;
# if this is enabled, enforce it
-if ( $conf->exists('agent-ship_address', $cgi->param('agentnum')) ) {
+if ( $conf->exists('agent-ship_address', scalar($cgi->param('agentnum'))) ) {
my $agent = FS::agent->by_key($cgi->param('agentnum'));
my $agent_cust_main = $agent->agent_cust_main;
if ( $agent_cust_main ) {
-----------------------------------------------------------------------
Summary of changes:
httemplate/edit/process/cust_main.cgi | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
More information about the freeside-commits
mailing list