Oppaitime'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 339B

1234567891011121314151617
  1. <?
  2. BIC::challenge();
  3. if (isset($LoggedUser['ID']) || !isset($_GET['token']) || !FEATURE_EMAIL_REENABLE) {
  4. header("Location: index.php");
  5. die();
  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();