mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-13 02:46:30 +00:00
18 lines
309 B
PHP
18 lines
309 B
PHP
|
<?
|
||
|
authorize();
|
||
|
if (!check_perms('site_edit_wiki')) {
|
||
|
error(403);
|
||
|
}
|
||
|
|
||
|
$ID = $_GET['id'];
|
||
|
|
||
|
if (!is_number($ID) || !is_number($ID)) {
|
||
|
error(404);
|
||
|
}
|
||
|
|
||
|
$DB->query("DELETE FROM cover_art WHERE ID = '$ID'");
|
||
|
|
||
|
$Cache->delete_value('torrents_cover_art_' . $GroupID);
|
||
|
header('Location: '.$_SERVER['HTTP_REFERER']);
|
||
|
?>
|