mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-30 01:38:54 +00:00
24fa162413
[ci skip] [skip ci]
16 lines
316 B
PHP
16 lines
316 B
PHP
<?php
|
|
|
|
require_once dirname(__DIR__).DIRECTORY_SEPARATOR.'smarty.php';
|
|
|
|
use nntmux\ReleaseRegex;
|
|
|
|
// login check
|
|
$admin = new AdminPage;
|
|
$regex = new ReleaseRegex();
|
|
|
|
if (isset($_GET['action']) && $_GET['action'] == '2') {
|
|
$id = (int) $_GET['regex_id'];
|
|
$regex->delete($id);
|
|
echo "Regex $id deleted.";
|
|
}
|