Gazelle/sections/top10/index.php
fen7azy 4a8d100980 Fix 'top 10' permission
When the access to 'top 10' is restricted, proper error message is
displayed.
2014-06-19 19:52:36 +03:00

37 lines
830 B
PHP

<?
enforce_login();
if (!check_perms('site_top10')) {
error(403);
}
include(SERVER_ROOT.'/sections/torrents/functions.php'); //Has get_reports($TorrentID);
if (empty($_GET['type']) || $_GET['type'] == 'torrents') {
include(SERVER_ROOT.'/sections/top10/torrents.php');
} else {
switch ($_GET['type']) {
case 'users':
include(SERVER_ROOT.'/sections/top10/users.php');
break;
case 'tags':
include(SERVER_ROOT.'/sections/top10/tags.php');
break;
case 'history':
include(SERVER_ROOT.'/sections/top10/history.php');
break;
case 'votes':
include(SERVER_ROOT.'/sections/top10/votes.php');
break;
case 'donors':
include(SERVER_ROOT.'/sections/top10/donors.php');
break;
case 'lastfm':
include(SERVER_ROOT.'/sections/top10/lastfm.php');
break;
default:
error(404);
break;
}
}
?>