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 324B

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