[freeside-commits] branch FREESIDE_4_BRANCH updated. d5f2b4e779968e70898fca6d61cbb45e284ba632
Christopher Burger
burgerc at 420.am
Thu Jul 27 12:59:53 PDT 2017
The branch, FREESIDE_4_BRANCH has been updated
via d5f2b4e779968e70898fca6d61cbb45e284ba632 (commit)
from aa225fb652d1917dd6af6c8fafaa5720f96ed394 (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 d5f2b4e779968e70898fca6d61cbb45e284ba632
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 909127b..737748e 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