Error when sending email in V2.beta3
Status: Inactive
Brought to you by:
domes
There is an error when sending email in V2.beta3. This occurs because an SQL query in include/emailsendbase.class.php does not use the table prefix properly.
The following diff fixes the problem:
304c304
< $sql = "INSERT INTO Members_Emails VALUES ($val, $emailID)";
---
> $sql = "INSERT INTO " . `###_Members_Emails` . " VALUES ($val, $emailID)";