mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-09-01 10:48:53 +00:00
15 lines
238 B
PHP
15 lines
238 B
PHP
<?php
|
|
|
|
use App\Models\User;
|
|
use App\Models\Forumpost;
|
|
|
|
if (! User::isLoggedIn()) {
|
|
$page->show403();
|
|
}
|
|
$id = request()->input('id') + 0;
|
|
|
|
if (isset($id)) {
|
|
Forumpost::deleteParent($id);
|
|
header('Location:'.WWW_TOP.'/forum');
|
|
}
|