Removed multiple require()
[mirrors/Kyberia-bloodline.git] / wwwroot / inc / smarty / node_methodz / function.get_allusers.php
CommitLineData
49451e57
DH
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);
689c7c3f
DH
6 while ($set->next()) {
7 $users[]=$set->getRecord();
8 $smarty->assign('get_allusers',$users);
9 }
49451e57
DH
10 }
11?>
This page took 0.117613 seconds and 4 git commands to generate.