Commit 2d05b5fdcea7a5985783d36bf9e6ae806bee96ff
1 parent
d3364e4a
KTS-1260
"lookup tree field subcategories have "Root" attached to their name in metadata edit window" Fixed. Reviewed By: Conrad git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@6194 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
1 additions
and
1 deletions
lib/documentmanagement/MDTree.inc
| ... | ... | @@ -277,7 +277,7 @@ class MDTree { |
| 277 | 277 | $extraclass = ' inactive'; |
| 278 | 278 | } |
| 279 | 279 | |
| 280 | - $treeStr .= '<li class="treenode' . $extraclass . '"><a class="pathnode" onclick="toggleElementClass(\'active\', this.parentNode);toggleElementClass(\'inactive\', this.parentNode);">' . $treeToRender->mapnodes[$subnode_val]->getName() . 'Root</a>'; | |
| 280 | + $treeStr .= '<li class="treenode' . $extraclass . '"><a class="pathnode" onclick="toggleElementClass(\'active\', this.parentNode);toggleElementClass(\'inactive\', this.parentNode);">' . $treeToRender->mapnodes[$subnode_val]->getName() . '</a>'; | |
| 281 | 281 | $treeStr .= $this->_evilTreeRecursion($subnode_val, $treeToRender, $inputname); |
| 282 | 282 | $treeStr .= '</li>'; |
| 283 | 283 | } | ... | ... |