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

12345678910111213
  1. <?php
  2. #declare(strict_types=1);
  3. if (empty($_GET['type']) || $_GET['type'] == 'inbox' || $_GET['type'] == 'sentbox') {
  4. require(SERVER_ROOT.'/sections/ajax/inbox/inbox.php');
  5. } elseif ($_GET['type'] == 'viewconv') {
  6. require(SERVER_ROOT.'/sections/ajax/inbox/viewconv.php');
  7. } else {
  8. echo json_encode(array('status' => 'failure'));
  9. error();
  10. }
  11. ?>