supporter_id does not belong here.

This commit is contained in:
Bradley M. Kuhn 2015-12-06 15:45:25 -08:00
parent 6c71c75a2c
commit 29705d1d6d

View file

@ -93,7 +93,7 @@ while (my $row = $sthOld->fetchrow_hashref) {
$sthInsertEmailAddress->execute($row->{paypal_payer});
my $emailId = $dbhNew->last_insert_id("","","","");
$sthLinkSupporterToEmail->execute($supporterId, $emailId);
$sthPostalAddress->execute($supporterId, $row->{formatted_address});
$sthPostalAddress->execute($row->{formatted_address});
my $postalId = $dbhNew->last_insert_id("","","","");
$sthLinkSupporterToPostal->($supporterId, $postalId);
}