[freeside-commits] branch master updated. bf9b266acafce57cfa532801c00d45dc4eab765c

Ivan Kohler ivan at freeside.biz
Wed Apr 27 12:18:44 PDT 2022


The branch, master has been updated
       via  bf9b266acafce57cfa532801c00d45dc4eab765c (commit)
      from  5c93b49cd87b0a7ea63ca2e40ee29cc1d1be13b4 (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 bf9b266acafce57cfa532801c00d45dc4eab765c
Author: Ivan Kohler <ivan at freeside.biz>
Date:   Wed Apr 27 12:18:43 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