Changeset 413
- Timestamp:
- 01/28/05 18:54:38 (8 years ago)
- Location:
- trunk/wifidog-auth/wifidog
- Files:
-
- 2 modified
-
admin/hotspot.php (modified) (2 diffs)
-
classes/Node.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wifidog-auth/wifidog/admin/hotspot.php
r407 r413 75 75 } else if ($action == 'owner') { // Display hotspot owner list and add form 76 76 $smarty->assign('title', _('Owner hotspot with')); 77 $db->ExecSql("SELECT user_id FROM node_owners WHERE node_id='$node_id'", $node_owner_results);78 79 77 try { 80 78 $node = Node::getNode($node_id); … … 167 165 } 168 166 169 //$db->ExecSql("SELECT node_id, name, creation_date from nodes", $node_results, false);170 //$node = Node::GetObject('default');171 //if (is_array($node_results)) // If no row return, $node_results will be NULL172 167 $nodes = Node::getAllNodesOrdered("node_id"); 173 168 if (is_array($nodes)) { -
trunk/wifidog-auth/wifidog/classes/Node.php
r409 r413 251 251 } 252 252 253 function getInfoArray() { 254 return $this->mRow; 255 } 256 253 257 public static function getAllOnlineUsers() { 254 258 global $db;
