Ok so JOINs can't be used in an UPDATE? I don't recall reading that anywhere
The reason I'm trying to include the email field is that if I don't it trips an error further along the mod about not inputting a valid email and doesn't complete the query.
Code:
// If an email isn't entered or is invalid show this error
if (empty($unsubscribe['email']))
{
eval(standard_error(fetch_error('advanced_unsubscribe_link_error_unsubscribed', $vbulletin->options['contactuslink'])));
}
How I understand that code it checks each query for an email address and if the query doesn't have one it spits out the error. I have a couple of ideas about how to get around that (move the code so it comes before the queries that don't have email fields, or just not use it

) but not sure if there's a better way.
I do use ( for the $db->queries and they do have the ; at the end