Gazelle/sections/reportsv2/ajax_update_resolve.php

44 lines
976 B
PHP
Raw Normal View History

2011-03-28 14:21:28 +00:00
<?
// 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);