use GET['node_id'] to figure the node instead of from the incoming IP - thanks Thomas
[nodeconfig.git] / PlanetLabConf / extensions.php
1 <?php
2
3 require_once 'plc_api.php';
4 global $adm;
5
6 if (isset($_REQUEST['node_id'])) {
7     $node_id = intval($_REQUEST['node_id']);
8     print $adm->GetNodeExtensions($node_id);
9 }
10
11 ?>
12