X-Git-Url: http://git.harvie.cz/?a=blobdiff_plain;f=wwwroot%2Finc%2Fsmarty%2Fnode_methodz%2Ffunction.get_k_neurons.php;h=3711415b4eb348a5273d961fa43ed1571ec637cc;hb=79a1334bcab6596cf6695b1949dbb04c10c1cdf7;hp=ba04b1ac4dbcce560ad387de1339eff76380d7ff;hpb=ea8ec237eef63c13011de76d414425ce13ce884d;p=mirrors%2FKyberia-bloodline.git diff --git a/wwwroot/inc/smarty/node_methodz/function.get_k_neurons.php b/wwwroot/inc/smarty/node_methodz/function.get_k_neurons.php index ba04b1a..3711415 100644 --- a/wwwroot/inc/smarty/node_methodz/function.get_k_neurons.php +++ b/wwwroot/inc/smarty/node_methodz/function.get_k_neurons.php @@ -5,7 +5,7 @@ function smarty_function_get_k_neurons($params,&$smarty) { global $db,$node; if (isset($params['offset']) && (is_numeric($params['offset']))) { $offset=$params['offset']; - } else {$offset=0;} + } else {$offset=20;} if (isset($params['listing_amount']) && (is_numeric($params['listing_amount']))) { $listing_amount=$params['listing_amount']; } else {$listing_amount=DEFAULT_LISTING_AMOUNT;} @@ -18,11 +18,9 @@ function smarty_function_get_k_neurons($params,&$smarty) { } else {$vector="00";} - $set=nodes::getKNeurons($params['user_id'],20); // XXX offset + // XXX other parameters + $k_array=nodes::getKNeurons($_SESSION['user_id'],$offset); - while ($set->next()) { - $k_array[]=$set->getRecord(); - } $smarty->assign('get_k_neurons',$k_array); }