Changeset 413

Show
Ignore:
Timestamp:
01/28/05 18:54:38 (8 years ago)
Author:
aprilp
Message:

*** empty log message ***

Location:
trunk/wifidog-auth/wifidog
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/wifidog-auth/wifidog/admin/hotspot.php

    r407 r413  
    7575} else if ($action == 'owner') { // Display hotspot owner list and add form 
    7676    $smarty->assign('title', _('Owner hotspot with')); 
    77     $db->ExecSql("SELECT user_id FROM node_owners WHERE node_id='$node_id'", $node_owner_results); 
    78  
    7977    try { 
    8078        $node = Node::getNode($node_id); 
     
    167165    } 
    168166 
    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 NULL 
    172167    $nodes = Node::getAllNodesOrdered("node_id"); 
    173168    if (is_array($nodes)) { 
  • trunk/wifidog-auth/wifidog/classes/Node.php

    r409 r413  
    251251  } 
    252252 
     253  function getInfoArray() { 
     254    return $this->mRow; 
     255  } 
     256 
    253257  public static function getAllOnlineUsers() { 
    254258    global $db;