I deleted this from the quiz.php and it works, but i doubt think the pms won't send now:
Code:
// ---------------------------------------------------
// Start Globalized Function - SendPM
// ---------------------------------------------------
function SendPM($message,$title,$to,$from = 0){
global $vbulletin, $DB;
$to = $DB->query_first("select username, userid from ".TABLE_PREFIX."user where userid='{$to}'");
$DataManager_PM =& datamanager_init('PM', $vbulletin, ERRTYPE_ARRAY);
$DataManager_PM->set('fromuserid', $to['userid']);
$DataManager_PM->set('fromusername', $to['username']);
$DataManager_PM->set('title', $title);
$DataManager_PM->set('message', $message);
$DataManager_PM->set_recipients($to['username'],$to['permissions']);
$DataManager_PM->set('dateline', TIMENOW);
$DataManager_PM->save();
}
// ---------------------------------------------------
// End Globalized Function - SendPM
// ---------------------------------------------------
// ---------------------------------------------------
// Start Globalized Function - Error Page
// ---------------------------------------------------
function RunError($message){
global $vbulletin, $session, $stylevar, $_POST, $vbphrase,$navbits,$show,$header;
global $templatecache, $db, $vboptions, $style,$headinclude,$footer;
global $tempusagecache, $templateassoc, $pmbox, $pmtext, $quiz_page, $NewestQuiz;
// Navigation
$navbits = array("quiz.php?$session[sessionurl]do=main" => "Quizzes");
$navbits[""] = "Error!";
eval('$quiz_page .= "' . fetch_template('quiz_error') . '";');
$navbits = construct_navbits($navbits);
eval('$navbar = "' . fetch_template('navbar') . '";');
eval('print_output("' . fetch_template('QUIZ') . '");');
exit;
}
// ---------------------------------------------------
// End Globalized Function - Error Page
// ---------------------------------------------------