Add method call here.

This commit is contained in:
Bradley M. Kuhn 2015-12-06 15:46:27 -08:00
parent 29705d1d6d
commit 63c51c4682

View file

@ -95,7 +95,7 @@ while (my $row = $sthOld->fetchrow_hashref) {
$sthLinkSupporterToEmail->execute($supporterId, $emailId);
$sthPostalAddress->execute($row->{formatted_address});
my $postalId = $dbhNew->last_insert_id("","","","");
$sthLinkSupporterToPostal->($supporterId, $postalId);
$sthLinkSupporterToPostal->execute($supporterId, $postalId);
}
foreach my $sth (qw/$sthOld $sthOld $sthNewInsertSupporter $sthInsertEmailAddress
$sthLinkSupporterToEmail $sthInsertRequest $sthPostalAddress $sthLinkSupporterToPostal/) {