Code: Alles auswählen
Warning: strpos() [function.strpos]: Empty delimiter. in /www/htdocs/Orion/privmsg.php on line 1340
Warning: Cannot modify header information - headers already sent by (output started at /www/htdocs/Orion/privmsg.php:1340) in /www/htdocs/Orion/includes/page_header.php on line 870
Warning: Cannot modify header information - headers already sent by (output started at /www/htdocs/Orion/privmsg.php:1340) in /www/htdocs/Orion/includes/page_header.php on line 872
Warning: Cannot modify header information - headers already sent by (output started at /www/htdocs/Orion/privmsg.php:1340) in /www/htdocs/Orion/includes/page_header.php on line 873Inhalt der Zeile 1340ff:
Code: Alles auswählen
$user_not_found = '';
for ($n = 0; $n < count($to_name_array); $n++)
{
$to_name = str_replace("'", '', $to_name_array[$n]);
[b]if (strpos($to_user_names, $to_name) === FALSE) [/b] {
$user_not_found .= ($user_not_found != '') ? ', '.$to_name : $to_name;
}
}
if ($user_not_found != '')
{
$error = TRUE;
$error_msg .= $lang['No_such_user'].": ".$user_not_found;
}
}
} Sonnenblume