Gazelle/sections/stats/index.php
2013-04-30 18:18:07 +00:00

16 lines
281 B
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;
}
}
?>