X-Git-Url: http://git.harvie.cz/?a=blobdiff_plain;f=wwwroot%2Finc%2Fsmarty%2Fnode_methodz%2Ffunction.get_threaded_children.php;h=7f18e893b816bec134dcc3df3961d3f0d231e0df;hb=0eb768bf3a10faf5ad7848caf2c2472e297f2837;hp=2ed046792cdf13ea6ccb09b323ec6548a269522a;hpb=867423f4a05f49b75a5e570dd58a1edb4cf4e89d;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 2ed0467..7f18e89 100644 --- a/wwwroot/inc/smarty/node_methodz/function.get_threaded_children.php +++ b/wwwroot/inc/smarty/node_methodz/function.get_threaded_children.php @@ -65,7 +65,12 @@ else $security = ""; $child = $result->getRecord(); if($child['synapse_creator']!='') { $child['node_status']='linked'; - if($child['transport']!='') $child['node_content']=$child['node_id'].'@'.$child['transport']; + if($child['transport']!='') { + require_once(INCLUDE_DIR.'transports.inc'); + transport_load($child['transport']); + global $transports; + $child['node_content']=$child['node_id'].'@'.$child['transport'].':
'.$transports[$child['transport']]['get_node_content']($child['node_id']); + } } $get_children_array[]=$child;