Fix spelling: occurred, execute, which etc

This commit is contained in:
Otto Kekäläinen 2016-03-04 02:09:37 +02:00
commit 1777fd5f55
126 changed files with 200 additions and 200 deletions

View file

@ -265,7 +265,7 @@ sub fetch_all_rows
if (!($sth= $dbh->prepare($query)))
{
print "\n" if ($opt_debug);
die "Error occured with prepare($query)\n -> $DBI::errstr\n";
die "Error occurred with prepare($query)\n -> $DBI::errstr\n";
return undef;
}
if (!$sth->execute)
@ -282,7 +282,7 @@ sub fetch_all_rows
print "0\n" if ($opt_debug);
return 0;
}
die "Error occured with execute($query)\n -> $DBI::errstr\n";
die "Error occurred with execute($query)\n -> $DBI::errstr\n";
$sth->finish;
return undef;
}