mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-13 19:06:27 +00:00
26 lines
737 B
PHP
26 lines
737 B
PHP
|
<?
|
||
|
//******************************************************************************//
|
||
|
//--------------- Delete a recommendation --------------------------------------//
|
||
|
|
||
|
if(!check_perms('site_recommend_own') && !check_perms('site_manage_recommendations')){
|
||
|
error(403);
|
||
|
}
|
||
|
|
||
|
$GroupID=$_GET['groupid'];
|
||
|
if(!$GroupID || !is_number($GroupID)) { error(404); }
|
||
|
|
||
|
if(!check_perms('site_manage_recommendations')){
|
||
|
$DB->query("SELECT UserID FROM torrents_recommended WHERE GroupID='$GroupID'");
|
||
|
list($UserID) = $DB->next_record();
|
||
|
if($UserID != $LoggedUser['ID']){
|
||
|
error(403);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
$DB->query("DELETE FROM torrents_recommended WHERE GroupID='$GroupID'");
|
||
|
|
||
|
|
||
|
$Cache->delete_value('recommend');
|
||
|
header('Location: '.$_SERVER['HTTP_REFERER']);
|
||
|
?>
|