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

1234567891011121314151617
  1. <?php
  2. enforce_login();
  3. if (!isset($_REQUEST['action'])) {
  4. error(404);
  5. } else {
  6. switch ($_REQUEST['action']) {
  7. case 'users':
  8. include SERVER_ROOT.'/sections/stats/users.php';
  9. break;
  10. case 'torrents':
  11. include SERVER_ROOT.'/sections/stats/torrents.php';
  12. break;
  13. }
  14. }