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

12345678910111213141516171819
  1. <?php
  2. declare(strict_types = 1);
  3. if (isset($LoggedUser['ID'])) {
  4. if (!isset($_REQUEST['action'])) {
  5. include('private.php');
  6. } else {
  7. switch ($_REQUEST['action']) {
  8. case 'poll':
  9. include(SERVER_ROOT.'/sections/forums/poll_vote.php');
  10. break;
  11. default:
  12. error(-1);
  13. }
  14. }
  15. } else {
  16. header('Location: login.php');
  17. }