Postgresql-related Bug in Query
Brought to you by:
trilexcom
The file DBEngine.class.php produces PostgreSQL-incompatible SQL (an empty WHERE-Statement)
The following patch can correct this:
// Get where clause for recipient email address(es)
$recipEmailClause = $this->convertEmailaddresses2SQL($emailaddresses);
if ($recipEmailClause == "()" ) {
$recipEmailClause = "(1=1)";
}