Skip to content
Snippets Groups Projects
Commit eafbcea4 authored by Kerstin Howe's avatar Kerstin Howe
Browse files

fixed line 177 from $sth to $synonym_check_sth

parent 9ac1f3be
No related branches found
No related tags found
No related merge requests found
......@@ -174,7 +174,7 @@ sub store {
my $synonyms = $exObj->get_all_synonyms();
foreach my $syn ( @$synonyms ) {
$synonym_check_sth->execute($dbX, $syn);
my ($dbSyn) = $sth->fetchrow_array();
my ($dbSyn) = $synonym_check_sth->fetchrow_array();
$synonym_store_sth->execute($dbX, $syn) if(!$dbSyn);
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment