mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-30 01:38:54 +00:00
13 lines
278 B
PHP
Executable File
13 lines
278 B
PHP
Executable File
<?php
|
|
require_once './config.php';
|
|
require_once NN_WWW . 'pages/smartyTV.php';
|
|
|
|
$page = new AdminPage();
|
|
|
|
if (isset($_GET['id'])) {
|
|
(new smartyTV(['Settings' => $page->settings]))->delete($_GET['id']);
|
|
}
|
|
|
|
$referrer = $_SERVER['HTTP_REFERER'];
|
|
header("Location: " . $referrer);
|