Oh ok I see the problem now, you are coding this the wrong way.
Replace this:
Code:
$useremails=$DB_site->query("SELECT user.*
FROM subscribethread,user
WHERE subscribethread.threadid='$threadid'
AND subscribethread.userid=user.userid
AND user.userid<>'$userid'
AND user.lastactivity>'$lastposttime[dateline]'");
Code:
$useremails=$DB_site->query("SELECT user.*
FROM subscribethread,user
WHERE subscribethread.threadid='$threadid'
AND subscribethread.userid=user.userid
AND user.userid<>'$userid'");
And add this:
Code:
if (!$touser['allemail'] and $touser['lastactivity']<=$lastposttime['dateline'])
continue;
Right after this:
Code:
while ($touser=$DB_site->fetch_array($useremails)) {