mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 01:08:56 +00:00
17 lines
314 B
PHP
17 lines
314 B
PHP
<?php
|
|
require_once dirname(__DIR__) . DIRECTORY_SEPARATOR . 'smarty.php';
|
|
|
|
|
|
use nntmux\Binaries;
|
|
|
|
// login check
|
|
$admin = new AdminPage;
|
|
$bin = new Binaries();
|
|
|
|
if (isset($_GET['action']) && $_GET['action'] == "2")
|
|
{
|
|
$id = (int)$_GET['bin_id'];
|
|
$bin->deleteBlacklist($id);
|
|
print "Blacklist $id deleted.";
|
|
}
|