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:
parent
fd85bb68f5
commit
67a37ddd10
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue