mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-31 02:08:57 +00:00
17 lines
281 B
PHP
17 lines
281 B
PHP
<?php
|
|
require_once './config.php';
|
|
|
|
|
|
use newznab\ReleaseRegex;
|
|
|
|
// login check
|
|
$admin = new AdminPage;
|
|
$regex = new ReleaseRegex();
|
|
|
|
if (isset($_GET['action']) && $_GET['action'] == "2")
|
|
{
|
|
$id = (int)$_GET['regex_id'];
|
|
$regex->delete($id);
|
|
print "Regex $id deleted.";
|
|
}
|