Quote:
Originally posted by TheCaver
Also, be able to remove the "you will not receive any more notifications till you visit the board" thing.
|
To do this:
Open \admin\functions.php
Find:
PHP 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]'
");
Replace with:
PHP Code:
$useremails=$DB_site->query("SELECT user.*
FROM subscribethread,user
WHERE subscribethread.threadid='$threadid'
AND subscribethread.userid=user.userid
AND user.userid<>'$userid'");