diff options
author | Christopher Burger <burgerc@freeside.biz> | 2017-07-27 15:18:30 -0400 |
---|---|---|
committer | Christopher Burger <burgerc@freeside.biz> | 2017-07-27 15:18:30 -0400 |
commit | 862381171227acfe4a7bf5e1957de991b3928704 (patch) | |
tree | 7fdc337e75516665c5c4669d03b45972d3f44cc7 /rt/lib/RT/Interface | |
parent | 810e6898f2cc89911edd5a56e90ddb202867c92a (diff) |
RT# 38517 - fixed small error causing perl warning on start.
Diffstat (limited to 'rt/lib/RT/Interface')
-rw-r--r-- | rt/lib/RT/Interface/Web_Vendor.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rt/lib/RT/Interface/Web_Vendor.pm b/rt/lib/RT/Interface/Web_Vendor.pm index 909127b22..737748e63 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; } |