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.

index.php 350B

123456789101112131415
  1. <?php
  2. #declare(strict_types=1);
  3. if (isset($LoggedUser['ID']) || !isset($_GET['token']) || !FEATURE_EMAIL_REENABLE) {
  4. header('Location: index.php');
  5. error();
  6. }
  7. if (isset($_GET['token'])) {
  8. $Err = AutoEnable::handle_token($_GET['token']);
  9. }
  10. View::show_header('Enable Request');
  11. echo $Err; // This will always be set
  12. View::show_footer();