mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 17:28:55 +00:00
19 lines
343 B
PHP
19 lines
343 B
PHP
<?php
|
|
|
|
require_once dirname(__DIR__).DIRECTORY_SEPARATOR.'smarty.php';
|
|
|
|
use App\Models\User;
|
|
|
|
$page = new AdminPage();
|
|
|
|
if (isset($_GET['id'])) {
|
|
User::deleteUser($_GET['id']);
|
|
}
|
|
|
|
if (isset($_GET['redir'])) {
|
|
header('Location: '.$_GET['redir']);
|
|
} else {
|
|
$referrer = $_SERVER['HTTP_REFERER'];
|
|
header('Location: '.$referrer);
|
|
}
|