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.
1234567891011121314151617 |
- <?php
-
- enforce_login();
-
- if (!isset($_REQUEST['action'])) {
- error(404);
- } else {
- switch ($_REQUEST['action']) {
- case 'users':
- include SERVER_ROOT.'/sections/stats/users.php';
- break;
-
- case 'torrents':
- include SERVER_ROOT.'/sections/stats/torrents.php';
- break;
- }
- }
|