mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 01:08:56 +00:00
15 lines
346 B
PHP
15 lines
346 B
PHP
<?php
|
|
|
|
require_once dirname(__DIR__, 2).DIRECTORY_SEPARATOR.'resources/views/themes/smarty.php';
|
|
|
|
use Blacklight\Binaries;
|
|
|
|
// login check
|
|
$bin = new Binaries();
|
|
|
|
if (request()->has('action') && request()->input('action') === '2') {
|
|
$id = (int) request()->input('bin_id');
|
|
$bin->deleteBlacklist($id);
|
|
echo "Blacklist $id deleted.";
|
|
}
|