/************************************************************************ ||------------|| User IP history page ||---------------------------|| This page lists previous IPs a user has connected to the site with. It gets called if $_GET['action'] == 'ips'. It also requires $_GET['userid'] in order to get the data for the correct user. ************************************************************************/ define('IPS_PER_PAGE', 25); if(!check_perms('users_mod')) { error(403); } $UserID = $_GET['userid']; if (!is_number($UserID)) { error(404); } $DB->query("SELECT um.Username, p.Level AS Class FROM users_main AS um LEFT JOIN permissions AS p ON p.ID=um.PermissionID WHERE um.ID = ".$UserID); list($Username, $Class) = $DB->next_record(); if(!check_perms('users_view_ips', $Class)) { error(403); } $UsersOnly = $_GET['usersonly']; show_header("Tracker IP history for $Username"); ?>
IP address | Torrent | Time |
=$IP?> (=get_cc($IP)?>) =get_host($IP)?> | =$TorrentID?> | =date("Y-m-d g:i:s", $Time)?> |