obtains the list of all registered users and puts it and assigns it to smarty get_all...
[mirrors/Kyberia-bloodline.git] / wwwroot / inc / smarty / node_methodz / function.get_allusers.php
1 <?php
2 function smarty_function_get_allusers($params,&$smarty) {
3 global $db,$node;
4 $q="select user_id, login from users where hash='' order by login ";
5 $set=$db->query($q);
6 $users[]=$set->getRecord();
7 $smarty->assign('get_allusers',$users);
8 }
9 ?>
This page took 0.238076 seconds and 4 git commands to generate.