. */ header("Content-type: application/javascript"); header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); header("Cache-Control: no-cache"); header("Pragma: no-cache"); require_once("config.php"); require_once("lib/trans.php"); require_once("lib/macs.php"); function translator($mac) { global $mac_translation_table; if (array_key_exists($mac, $mac_translation_table)) return $mac_translation_table[$mac]; return $mac; } $macs = macs_get(); $macs = array_map("translator", $macs); if (count($macs) > 0) { echo '["'.implode('", "', $macs).'"]'; } else { echo '[]'; } macs_purge();