Revert incorrect table change from earlier commit.

An earlier commit that meant to remove the "my" from beginning of this
statement inadvertently changed the table name.  This is now corrected.
This commit is contained in:
Bradley M. Kuhn 2015-12-16 20:13:57 -08:00
parent fd85bb68f5
commit 67a37ddd10

View file

@ -210,7 +210,7 @@ sub addEmailAddress($$$$) {
my $addressId = $self->dbh->last_insert_id("","","","");
$sth->finish();
$sth = $self->dbh->prepare("INSERT INTO supporter_postal_address_mapping" .
$sth = $self->dbh->prepare("INSERT INTO supporter_email_address_mapping" .
"(supporter_id, email_address_id) " .
"VALUES( ?, ?)");
$sth->execute($id, $addressId);