Still not working, and I dont know what i'm doing wrong. All the other information goes into the DB but not the contents of the message box.
Code:
if ($_REQUEST['do'] == 'submitnewticket'){
$vbulletin->input->clean_array_gpc('r', array('message' => TYPE_STR));
$message = $vbulletin->GPC['message'];
if (isset($WYSIWYG_HTML))
{
require_once('./includes/functions_wysiwyg.php');
$message = convert_wysiwyg_html_to_bbcode($WYSIWYG_HTML, $vboptions['allowhtml']);
}
else
{
$message = trim($message);
}
$vbulletin->db->query_write("INSERT INTO " . TABLE_PREFIX ."helpcenter_ticket(title, departmentid, postusername,
postuserid, lastposter, lastupdate, dateline) VALUES ('" . addslashes(htmlspecialchars_uni($_REQUEST['title'])) . "',
'" . intval($_REQUEST['departmentid']) . "','" . addslashes($vbulletin->userinfo['username']) . "',
'" . intval($vbulletin->userinfo['userid']) . "','" . addslashes($vbulletin->userinfo['username']) . "'," . TIMENOW . ",
" . TIMENOW . ")");
$ticketid = $vbulletin->db->insert_id();
$vbulletin->db->query_write("INSERT INTO " . TABLE_PREFIX . "helpcenter_ticketreply(ticketid, username, userid,
dateline, pagetext, ipaddress) VALUES (" . intval($ticketid) . ",'" . addslashes($vbulletin->userinfo['username']) . "',
" . intval($vbulletin->userinfo['userid']) . "," . TIMENOW . ",'" . addslashes($message) . "', '" . addslashes(IPADDRESS) . "'
)");
//Insert AutoResponse Mail Here
$vbulletin->url = "helpcenter.php?$session[sessionurl]do=ticket&tid=".$ticketid;
eval(print_standard_redirect('redirect_postthanks'));
}
Thanks, Paul.