c9af95ff3a778dcc1430bbfc3ec7bcb0f2203981
[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.271073 seconds and 3 git commands to generate.