In private.php instructions read as follows.
In the same file find:
PHP Code:
else
{
$recipients[] = addslashes(htmlspecialchars_uni($pm['recipients']));
}
Replace that with:
PHP Code:
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
PHP Code:
else
{
$recipients[] = addslashes(htmlspecialchars_uni($pm['recipients']));
}
Can anyone help?
Nevermind i found it.....