Gazelle/sections/torrents/remove_cover_art.php

18 lines
309 B
PHP
Raw Normal View History

2013-05-27 08:00:58 +00:00
<?
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']);
?>