mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-31 18:28:54 +00:00
16 lines
344 B
PHP
16 lines
344 B
PHP
<?php
|
|
|
|
require_once dirname(__DIR__).DIRECTORY_SEPARATOR.'smarty.php';
|
|
|
|
use Blacklight\ReleaseRegex;
|
|
|
|
// login check
|
|
$page = new AdminPage;
|
|
$regex = new ReleaseRegex();
|
|
|
|
if (request()->has('action') && request()->input('action') === '2') {
|
|
$id = (int) request()->input('regex_id');
|
|
$regex->delete($id);
|
|
echo "Regex $id deleted.";
|
|
}
|