SnowBot
02-05-2005, 12:58 PM
In private.php instructions read as follows.
In the same file find:
else
{
$recipients[] = addslashes(htmlspecialchars_uni($pm['recipients']));
}
Replace that with:
else
{
if (!$collector=='' AND (vbstrtolower($pm['recipients'])==vbstrtolower($warner) OR vbstrtolower($pm['recipients'])==vbstrtolower($autowarner)))
{
$pm['recipients']=$collector;
}
$recipients[] = addslashes(htmlspecialchars_uni($pm['recipients']));
}
BUT i can not find
else
{
$recipients[] = addslashes(htmlspecialchars_uni($pm['recipients']));
}
Can anyone help?
Nevermind i found it.....
In the same file find:
else
{
$recipients[] = addslashes(htmlspecialchars_uni($pm['recipients']));
}
Replace that with:
else
{
if (!$collector=='' AND (vbstrtolower($pm['recipients'])==vbstrtolower($warner) OR vbstrtolower($pm['recipients'])==vbstrtolower($autowarner)))
{
$pm['recipients']=$collector;
}
$recipients[] = addslashes(htmlspecialchars_uni($pm['recipients']));
}
BUT i can not find
else
{
$recipients[] = addslashes(htmlspecialchars_uni($pm['recipients']));
}
Can anyone help?
Nevermind i found it.....