Menu

#4 Error when sending email in V2.beta3

open
nobody
None
5
2010-03-08
2010-03-08
Anonymous
No

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)";

Discussion


Log in to post a comment.