Log in

View Full Version : 3.0.6 install


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.....

sv1cec
02-06-2005, 06:28 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.....
OK, glad you solve your problem.