
11-24-2006, 11:04 AM
|
|
|
Join Date: Mar 2002
Posts: 76
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by coffee
HellRazor, Find This:
PHP Code:
if ($vbulletin->options['uac_notifyadmin'])
{
vbmail("" . $vbulletin->options['webmasteremail'] . "","Activation Reminder Report (Activation Notification)", $logmessage, "From: \"" . $vbulletin->options['bbtitle'] . " Mailer\" <" . $vbulletin->options['webmasteremail'] . ">");
}
Replace with the next:
PHP Code:
$testemailvars = $threedayemail . $fivedayemail . $eightdayemail . $deletedusers;
if ($testemailvars<>'NoneNoneNoneNone')
{
if ($vbulletin->options['uac_notifyadmin'])
{
vbmail("" . $vbulletin->options['webmasteremail'] . "","Activation Reminder Report (Activation Notification)", $logmessage, "From: \"" . $vbulletin->options['bbtitle'] . " Mailer\" <" . $vbulletin->options['webmasteremail'] . ">");
}
}
|
Awesome, thank you!
|