Changeset 414
- Timestamp:
- 01/28/05 18:54:38 (8 years ago)
- Files:
-
- 1 modified
-
trunk/wifidog-auth/wifidog/admin/hotspot.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wifidog-auth/wifidog/admin/hotspot.php
r413 r414 41 41 } 42 42 43 $smarty->assign('node_info', array( 44 'id' => $node->getID(), 45 'name' => $node->getName(), 46 'rss_url' => $node->getRSSURL(), 47 'home_page_url' => $node->getHomePageURL(), 48 'description' => $node->getDescription(), 49 'map_url' => $node->getMapURL(), 50 'street_address' => $node->getAddress(), 51 'public_phone_number' => $node->getTelephone(), 52 'public_email' => $node->getEmail(), 53 'mass_transit_info' => $node->getTransitInfo(), 54 )); 43 $smarty->assign('node_id', $node->getID()); 55 44 $smarty->assign('node_deployment_status', $node->getDeploymentStatus()); 56 $smarty->assign('node_i d', $node->getID());45 $smarty->assign('node_info', $node->getInfoArray()); 57 46 $smarty->assign('all_deployment_status', Node::getAllDeploymentStatus()); 58 47
