mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 09:18:54 +00:00
15 lines
228 B
PHP
15 lines
228 B
PHP
<?php
|
|
require_once './config.php';
|
|
|
|
$page = new AdminPage();
|
|
|
|
if (isset($_GET['id']))
|
|
{
|
|
$rc = new ReleaseComments();
|
|
$rc->deleteComment($_GET['id']);
|
|
}
|
|
|
|
$referrer = $_SERVER['HTTP_REFERER'];
|
|
header("Location: " . $referrer);
|
|
|