mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-13 19:06:27 +00:00
23 lines
731 B
PHP
23 lines
731 B
PHP
|
<?
|
||
|
if ($ID = (int)($_GET['id'])) {
|
||
|
// Check if conversation belongs to user
|
||
|
$DB->query("SELECT UserID, AssignedToUser FROM staff_pm_conversations WHERE ID=$ID");
|
||
|
list($UserID, $AssignedToUser) = $DB->next_record();
|
||
|
|
||
|
if ($UserID == $LoggedUser['ID'] || $IsStaff || $AssignedToUser == $LoggedUser['ID']) {
|
||
|
// Conversation belongs to user or user is staff, unresolve it
|
||
|
$DB->query("UPDATE staff_pm_conversations SET Status='Unanswered' WHERE ID=$ID");
|
||
|
// Clear cache for user
|
||
|
$Cache->delete_value('num_staff_pms_'.$LoggedUser['ID']);
|
||
|
|
||
|
header('Location: staffpm.php');
|
||
|
} else {
|
||
|
// Conversation does not belong to user
|
||
|
error(403);
|
||
|
}
|
||
|
} else {
|
||
|
// No id
|
||
|
header('Location: staffpm.php');
|
||
|
}
|
||
|
?>
|