Commit 1a788ab7882687ac3ecf19eec48a8be0c3c389c6

Authored by Nathanaël Jourdane
1 parent a61771ec

Do not display ##anode## on amda tree

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
php/classes/AmdaAction.php
... ... @@ -313,7 +313,7 @@ class AmdaAction
313 313 $objectMgr = new AliasMgr();
314 314 $alias = $objectMgr->getAlias($id);
315 315  
316   - $childrenToReturn[] = array('text' => $name,'alias' => $alias,
  316 + $childrenToReturn[] = array('text' => str_replace('##anode##', '', $name),'alias' => $alias,
317 317 'id' => $id,'nodeType' => $nodeType, 'info' => $info, "component_info" => $component_info,
318 318 'globalStart' => $globalStart, 'globalStop' => $globalStop, 'timeRestriction' => $timeRestriction,
319 319 'leaf' => $isLeaf, 'isParameter' => $isParameter, 'isScatter' => $isScatter,
... ...