[freeside-commits] branch FREESIDE_3_BRANCH updated. e41036e2c2c9fa3c70e13d56ec4ffb8168de99cc
Christopher Burger
burgerc at 420.am
Thu Jul 27 13:19:20 PDT 2017
The branch, FREESIDE_3_BRANCH has been updated
via e41036e2c2c9fa3c70e13d56ec4ffb8168de99cc (commit)
from 2746bde9f1e9fd6b0bdcebf232783d931cd6db29 (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 e41036e2c2c9fa3c70e13d56ec4ffb8168de99cc
Author: Christopher Burger <burgerc at freeside.biz>
Date: Thu Jul 27 15:18:30 2017 -0400
RT# 38517 - fixed small error causing perl warning on start.
diff --git a/rt/lib/RT/Interface/Web_Vendor.pm b/rt/lib/RT/Interface/Web_Vendor.pm
index d157733..9658541 100644
--- a/rt/lib/RT/Interface/Web_Vendor.pm
+++ b/rt/lib/RT/Interface/Web_Vendor.pm
@@ -196,7 +196,7 @@ sub ProcessTicketCustomers {
'emailaddress' => $Requestor->{'values'}->{'emailaddress'},
'comment' => 'Auto created from RT requestor',
};
- my $error = $contact->insert;
+ $error = $contact->insert;
push @results, 'Created Freeside contact for requestor ' . $Requestor->{'values'}->{'emailaddress'}
unless $error;
}
-----------------------------------------------------------------------
Summary of changes:
rt/lib/RT/Interface/Web_Vendor.pm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
More information about the freeside-commits
mailing list