To subscribe users to the thread if the option is on in their profile.
In showthread.php, replace:
Code:
eval("\$replybox = \"".gettemplate('showthread_replybox')."\";");
With:
Code:
if ($bbuserinfo['emailnotification']) {
$emailbox = 'yes';
} else {
$emailbox = '';
}
eval("\$replybox = \"".gettemplate('showthread_replybox')."\";");
Now in the showthread_replybox template, replace this:
Code:
<input type="hidden" name="email" value="">
With this:
Code:
<input type="hidden" name="email" value="$emailbox">