diff --git a/includes/App.class.php b/includes/App.class.php
index 5d989b8..a62f671 100755
--- a/includes/App.class.php
+++ b/includes/App.class.php
@@ -2059,6 +2059,107 @@ var $qls;
// Cable inline
} else {
+ foreach($pathArray as $pathArrayIndex => $connection) {
+
+ // Set connectionPairID so connection can be drawn
+ $connectionPairID = $pathArrayIndex;
+
+ foreach($connection as $connectionIndex => $connectionSide) {
+
+ if(count($connectionSide)) {
+ // Set trunkPairID so trunk can be drawn
+ if($connectionIndex == 1) {
+ $trunkPairID++;
+ }
+
+ // Generate port name(s)
+ $objName = '';
+ $selected = false;
+ $populated = false;
+ foreach($connectionSide as $port) {
+
+ $objID = $port['objID'];
+ $objFace = $port['objFace'];
+ $objDepth = $port['objDepth'];
+ $objPort = $port['objPort'];
+ $selected = ($port['selected'] == true) ? true : $selected;
+ $portDiverges = $port['portDiverges'];
+ $cableLength = $port['length'];
+ $mediaTypeID = $port['mediaTypeID'];
+ $connectorTypeID = $port['connectorTypeID'];
+ $populated = (isset($this->populatedPortArray[$objID][$objFace][$objDepth][$objPort])) ? true : $populated;
+
+ if(!$portDiverges) {
+ $objName .= $this->generateObjectPortName($objID, $objFace, $objDepth, $objPort).'
';
+ }
+ }
+
+ // Compile port name(s) in an object box
+ $htmlPort = $this->wrapObject($objID, $objName, $selected, $trunkPairID);
+
+ // Gather connector data
+ if($connectorTypeID) {
+ $portTypeName = $this->connectorTypeValueArray[$connectorTypeID]['name'];
+ } else {
+ $obj = $this->objectArray[$objID];
+ $objTemplateID = $obj['template_id'];
+ $objCompatibility = $this->compatibilityArray[$objTemplateID][$objFace][$objDepth];
+ $portTypeID = $objCompatibility['portType'];
+ $portTypeName = $this->portTypeValueArray[$portTypeID]['name'];
+ }
+
+ // Determine if this port is connected to another
+ if($connectionIndex == 1) {
+ $connected = (count($connection[0])) ? true : false;
+ } else {
+ $connected = (count($connection[1])) ? true : false;
+ }
+
+ if($connected or $populated) {
+ // Compile connector div
+ $htmlConnector = '