
03-05-2005, 10:27 AM
|
 |
|
|
Join Date: Jan 2003
Location: London
Posts: 5,268
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by Oblivion Knight
Yup, I was right.. Applicants are being repeated in the notifications.
3/03/2005 12:32:49 +0000 - New Applications: Rob , Walter Sullivan , Reno , AlienLX , MourningDove , kabniel .
3/04/2005 12:32:28 +0000 - New Applications: Rob , Walter Sullivan , Reno , AlienLX , MourningDove , kabniel .
Surely, this should only list applicants that have signed up since the previous notification? This same issue occurs with the new thread notifications in the staff forum.
|
in your maf_cron.php change this
PHP Code:
// Email users who have not activated after 8 days.
if ($day < 2)
{
$newapps .= "". $user[username]." ";
if ($newapps)
{
$newapps .= ", ";
}
}
to
PHP Code:
// Email users who have not activated after 8 days.
if ($day == 1)
{
$newapps .= "". $user[username]." ";
if ($newapps)
{
$newapps .= ", ";
}
}
that should fix it.
|