X-Git-Url: http://git.harvie.cz/?a=blobdiff_plain;f=wwwroot%2Finc%2Fsmarty%2Fnode_methodz%2Ffunction.get_threaded_children.php;h=802d1ceae47e1651618497a057db302e2e7c5c72;hb=79a1334bcab6596cf6695b1949dbb04c10c1cdf7;hp=7a7cc3313b656e8487d84cc53c6193f75f6fda68;hpb=cb5cd120d9222bd85330eb8861a4309f617322c4;p=mirrors%2FKyberia-bloodline.git diff --git a/wwwroot/inc/smarty/node_methodz/function.get_threaded_children.php b/wwwroot/inc/smarty/node_methodz/function.get_threaded_children.php index 7a7cc33..802d1ce 100644 --- a/wwwroot/inc/smarty/node_methodz/function.get_threaded_children.php +++ b/wwwroot/inc/smarty/node_methodz/function.get_threaded_children.php @@ -61,38 +61,20 @@ else $security = ""; $result=$db->query($q); - while ($result->next()) { -$child = $result->getRecord(); -if($child['external_link']=='transport') { - $child['node_status']='linked'; - /*$transport = preg_split('/[:@]/',trim($child['node_content'])); - require_once(INCLUDE_DIR.'transports.inc'); - transport_load($transport[0]); - global $transports; - $child['node_name']=$transport[0].':'.$transport[1].'@defaulthost'; - $child['node_content']=$transport[0].':'.$transport[1].'@defaulthost:
'.$transports[$transport[0]]['get_node_content']($transport[1]);*/ - $child = array_merge($child, transport_translate($child['node_content'])); -} + while ($result->next()) { + $child = $result->getRecord(); + transport_process_node($child); + if($child['synapse_creator']!='') $child['node_status']='linked'; -if($child['synapse_creator']!='') { - $child['node_status']='linked'; -/* if($child['transport']!='') { - require_once(INCLUDE_DIR.'transports.inc'); - transport_load($child['transport']); - global $transports; - $child['node_content']=$child['transport'].':'.$child['node_id'].'@default:\n
'.$transports[$child['transport']]['get_node_content']($child['node_id']); - $child['node_name']=$child['transport'].':'.$child['node_id']; - } */ -} + $get_children_array[]=$child; + } -$get_children_array[]=$child; - } - global $time_1, $time_2; - $time_2=$result->getString('node_created'); - $time_1=$get_children_array[0]['node_created']; + global $time_1, $time_2; + $time_2=$result->getString('node_created'); + $time_1=$get_children_array[0]['node_created']; - $smarty->assign('get_threaded_children',$get_children_array); + $smarty->assign('get_threaded_children',$get_children_array); - } +} ?>