mirror of
https://github.com/moodle/moodle.git
synced 2025-02-20 16:15:54 +01:00
14 lines
320 B
PHP
14 lines
320 B
PHP
<?php // $Id$
|
|
// Lookup a user using ipatlas and NetGeo
|
|
|
|
// The database for this is REALLY old now and this service is
|
|
// next to useless.
|
|
|
|
function iplookup_display($ip, $user=0) {
|
|
global $CFG;
|
|
|
|
redirect($CFG->wwwroot.'/iplookup/ipatlas/plot.php?address='.$ip.'&user='.$user);
|
|
}
|
|
|
|
?>
|