From 862381171227acfe4a7bf5e1957de991b3928704 Mon Sep 17 00:00:00 2001 From: Christopher Burger Date: Thu, 27 Jul 2017 15:18:30 -0400 Subject: [PATCH] RT# 38517 - fixed small error causing perl warning on start. --- rt/lib/RT/Interface/Web_Vendor.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.11.0