Gazelle/sections/stats/index.php

16 lines
281 B
PHP
Raw Normal View History

2011-03-28 14:21:28 +00:00
<?
enforce_login();
2013-04-30 18:18:07 +00:00
if (!isset($_REQUEST['action'])) {
2011-03-28 14:21:28 +00:00
error(404);
} else {
2013-04-30 18:18:07 +00:00
switch ($_REQUEST['action']) {
2011-03-28 14:21:28 +00:00
case 'users':
include(SERVER_ROOT.'/sections/stats/users.php');
break;
case 'torrents':
include(SERVER_ROOT.'/sections/stats/torrents.php');
break;
}
}
?>