Kyberia v2.3 - 1st revision from SVN (Without patches of kyberia.sk team)
[mirrors/Kyberia-bloodline.git] / inc / smarty / node_methodz / function.rand.php
1 <?php
2 function smarty_function_rand($params,&$smarty) {
3 if (is_numeric($params['min']) || is_numeric($params['max'])) {
4 $rand = rand($params['min'],$params['max']);
5 }
6 else $rand = rand();
7 $smarty->assign('rand',$rand);
8 }
9 ?>
This page took 0.233623 seconds and 4 git commands to generate.