Include separator in the table group

This commit is contained in:
Madhura Jayaratne 2013-09-20 07:16:13 +05:30
parent 9edec9410e
commit a86dc47741

View File

@ -588,11 +588,11 @@ class PMA_NavigationTree
$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]);