diff --git a/libraries/navigation/NavigationTree.class.php b/libraries/navigation/NavigationTree.class.php index 7946d44d8aaf..8f4a6bbba492 100644 --- a/libraries/navigation/NavigationTree.class.php +++ b/libraries/navigation/NavigationTree.class.php @@ -584,11 +584,11 @@ public function groupNode($node) $groups[$key]->pos2 = $node->pos2; $groups[$key]->pos3 = $node->pos3; if ($node instanceof Node_Table_Container) { + $tblGroup = '&tbl_group=' + . urlencode($key . $node->separator); $groups[$key]->links = array( - 'text' => $node->links['text'] - . '&tbl_group=' . urlencode($key), - 'icon' => $node->links['icon'] - . '&tbl_group=' . urlencode($key) + 'text' => $node->links['text'] . $tblGroup, + 'icon' => $node->links['icon'] . $tblGroup ); } $node->addChild($groups[$key]);