MOON
Server: Apache
System: Linux smtp.modiva.org 3.10.0-862.14.4.el7.x86_64 #1 SMP Wed Sep 26 15:12:11 UTC 2018 x86_64
User: rtbrisc (1005)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: /home/rtbrisc/public_html/admin/main/helpdesk/cancel.php
<?php
session_start();

$tid = $_GET['tid'];
$tech = $_GET['tech'];

if(empty($tid)){
	$_SESSION['log_err'] = "Unauthorised Operation";
	header("Location: ../../account/login.php");;
}else{
	header("Location: ../worker/workers/cancel.php?tid=$tid&tech=$tech&req=helpdesk");
}
?>