diff --git a/include/class.ticket.php b/include/class.ticket.php index 6518d12eae5722401bb1f96a4932ed00e14473c0..a4981d374b1b285d9027d5f1ad9817887a4392df 100644 --- a/include/class.ticket.php +++ b/include/class.ticket.php @@ -2436,7 +2436,6 @@ class Ticket { $form->setAnswer('priority', null, $topic->getPriorityId()); if ($autorespond) $autorespond = $topic->autoRespond(); - $source = $vars['source'] ?: 'Web'; //Auto assignment. if (!isset($vars['staffId']) && $topic->getStaffId()) @@ -2466,8 +2465,9 @@ class Ticket { if (!$priority || !$priority->getIdValue()) $form->setAnswer('priority', null, $cfg->getDefaultPriorityId()); $deptId = $deptId ?: $cfg->getDefaultDeptId(); - $topicId = $vars['topicId'] ?: 0; + $topicId = isset($topic) ? $topic->getId() : 0; $ipaddress = $vars['ip'] ?: $_SERVER['REMOTE_ADDR']; + $source = $source ?: 'Web'; //We are ready son...hold on to the rails. $number = Ticket::genRandTicketNumber();