Gazelle/sections/stats/index.php
2011-03-28 15:21:28 +01:00

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