Pessoal, tive este ero na execução do site:
Parse error: syntax error, unexpected T_STRING in /home/veicular/public_html/admincp/func.php on line 231
Não encontro o erro nas linha apntadas, alguém sabe como resolver?
A linha correspondente é esta:
function SendUserEmail($to, $subject, $mailmsg)
{
// sends email to users after registration is complete
global $name_of_site;
$signup Email = "<html><head><meta http-equiv="Content-Type" content="text/html; charset=windows-1252"></head><body>";
$signupEmail .= $mailmsg;
$signupEmail .= "</body></html>";
$header = "From: $name_of_site <" . FROM . ">\r\nContent-type: text/html; charset=" . CHARSET . "\n";
if (!mail($to, $subject, $signupEmail, $header))
{
echo "Mail Failed";
}
}