mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-13 10:56:26 +00:00
44 lines
976 B
PHP
44 lines
976 B
PHP
|
<?
|
||
|
// perform the back end of updating a resolve type
|
||
|
|
||
|
if(!check_perms('admin_reports')){
|
||
|
error(403);
|
||
|
}
|
||
|
|
||
|
if(empty($_GET['reportid']) || !is_number($_GET['reportid'])) {
|
||
|
echo 'HAX ATTEMPT!'.$_GET['reportid'];
|
||
|
die();
|
||
|
}
|
||
|
|
||
|
if(empty($_GET['categoryid']) || !is_number($_GET['categoryid'])) {
|
||
|
echo 'HAX ATTEMPT!!'.$_GET['categoryid'];
|
||
|
die();
|
||
|
}
|
||
|
|
||
|
if(empty($_GET['newresolve'])) {
|
||
|
echo "No new resolve";
|
||
|
die();
|
||
|
}
|
||
|
|
||
|
$ReportID = $_GET['reportid'];
|
||
|
$CategoryID = $_GET['categoryid'];
|
||
|
$NewType = $_GET['newresolve'];
|
||
|
|
||
|
if (!empty($Types[$CategoryID])) {
|
||
|
$TypeList = $Types['master'] + $Types[$CategoryID];
|
||
|
$Priorities = array();
|
||
|
foreach ($TypeList as $Key => $Value) {
|
||
|
$Priorities[$Key] = $Value['priority'];
|
||
|
}
|
||
|
array_multisort($Priorities, SORT_ASC, $TypeList);
|
||
|
} else {
|
||
|
$TypeList = $Types['master'];
|
||
|
}
|
||
|
|
||
|
if(!array_key_exists($NewType, $TypeList)) {
|
||
|
echo "No resolve from that category";
|
||
|
die();
|
||
|
}
|
||
|
|
||
|
$DB->query("UPDATE reportsv2 SET Type = '".$NewType."' WHERE ID=".$ReportID);
|