. * --------------------------------------------------------------------- */ include ('../inc/includes.php'); // Send UTF8 Headers header("Content-Type: text/html; charset=UTF-8"); Html::header_nocache(); Session::checkLoginUser(); if (isset($_POST["urgency"]) && isset($_POST["impact"]) && isset($_POST["priority"])) { $priority = Ticket::computePriority($_POST["urgency"], $_POST["impact"]); if ($_POST["priority"]) { echo ""; } else { echo Ticket::getPriorityName($priority); } }