avoid uninitialized value errors on upgrade
authorIvan Kohler <ivan@freeside.biz>
Fri, 25 Mar 2016 19:29:35 +0000 (12:29 -0700)
committerIvan Kohler <ivan@freeside.biz>
Fri, 25 Mar 2016 19:29:35 +0000 (12:29 -0700)
FS/FS/Upgrade.pm

index 2a480f8..eb2587b 100644 (file)
@@ -203,8 +203,9 @@ sub upgrade_overlimit_groups {
 sub upgrade_invoice_from {
   my ($conf, $agentnum, $agentonly) = @_;
   if (
 sub upgrade_invoice_from {
   my ($conf, $agentnum, $agentonly) = @_;
   if (
-      (!$conf->exists('invoice_from_name',$agentnum,$agentonly)) && 
-      ($conf->config('invoice_from',$agentnum,$agentonly) =~ /\<(.*)\>/)
+          ! $conf->exists('invoice_from_name',$agentnum,$agentonly)
+       && $conf->exists('invoice_from',$agentnum,$agentonly)
+       && $conf->config('invoice_from',$agentnum,$agentonly) =~ /\<(.*)\>/
   ) {
     my $realemail = $1;
     $realemail =~ s/^\s*//; # remove leading spaces
   ) {
     my $realemail = $1;
     $realemail =~ s/^\s*//; # remove leading spaces