Show
Ignore:
Timestamp:
01/20/05 11:57:41 (8 years ago)
Author:
aprilp
Message:

*** empty log message ***

Files:
1 modified

Legend:

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

    r379 r380  
    7878    } 
    7979 
    80     $db->ExecSql("SELECT user_id,email,reg_date FROM users ORDER BY $sort $direction LIMIT $per_page OFFSET $offset", $users_res); 
     80    $db->ExecSql("SELECT user_id,email,reg_date,account_status FROM users ORDER BY $sort $direction LIMIT $per_page OFFSET $offset", $users_res); 
    8181    if ($users_res) { 
    8282            $smarty->assign("users_array", $users_res); 
     
    8585    } 
    8686 
     87    $smarty->assign("account_status_to_text", $account_status_to_text); 
    8788    $smarty->display("admin/templates/user_log.html"); 
    8889}