In xcrud.php the function relation has an option to view the items in a tree.
The Symbol that shows the nodes in the tree is not well coded.
This is the part of code that renders the tree-node:
It can be changed to
The Symbol that shows the nodes in the tree is not well coded.
This is the part of code that renders the tree-node:
PHP:
protected function resort_relation_opts($options, $rel);
....
if ($out)
$out .= ' â”” ';
....
It can be changed to
PHP:
protected function resort_relation_opts($options, $rel);
....
if ($out)
$out .= ' └ ';
....