From 63c51c468271d75e3afe28895e102f52e66a3027 Mon Sep 17 00:00:00 2001 From: "Bradley M. Kuhn" Date: Sun, 6 Dec 2015 15:46:27 -0800 Subject: [PATCH] Add method call here. --- scripts/db-convert-0.1-to-0.2.plx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/db-convert-0.1-to-0.2.plx b/scripts/db-convert-0.1-to-0.2.plx index 86b18fe..c3af2d9 100644 --- a/scripts/db-convert-0.1-to-0.2.plx +++ b/scripts/db-convert-0.1-to-0.2.plx @@ -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/) {