mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-09-01 18:58:56 +00:00
59e90214e6
[ci skip] [skip ci]
15 lines
227 B
PHP
15 lines
227 B
PHP
<?php
|
|
|
|
use App\Models\User;
|
|
use App\Models\Forumpost;
|
|
|
|
if (! User::isLoggedIn()) {
|
|
$page->show403();
|
|
}
|
|
$id = $_GET['id'] + 0;
|
|
|
|
if (isset($id)) {
|
|
Forumpost::deleteParent($id);
|
|
header('Location:'.WWW_TOP.'/forum');
|
|
}
|