BioTorrents.de’s version of Gazelle
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
123456789101112131415 |
- <?php
- #declare(strict_types=1);
-
- if (isset($LoggedUser['ID']) || !isset($_GET['token']) || !FEATURE_EMAIL_REENABLE) {
- header('Location: index.php');
- error();
- }
-
- if (isset($_GET['token'])) {
- $Err = AutoEnable::handle_token($_GET['token']);
- }
-
- View::show_header('Enable Request');
- echo $Err; // This will always be set
- View::show_footer();
|