Bug #22070 » 13444.diff
typo3/class.filelistfoldertree.php (working copy) | ||
---|---|---|
$hasSub = true;
|
||
}
|
||
// Add the root of the mount to ->tree
|
||
$this->tree[] = array('HTML' => $firstHtml, 'row' => $row, 'bank' => $this->bank, 'hasSub' => $hasSub);
|
||
$this->tree[$val['name']] = array('HTML' => $firstHtml, 'row' => $row, 'bank' => $this->bank, 'hasSub' => $hasSub);
|
||
// If the mount is expanded, go down:
|
||
if ($isOpen)
|
||
... | ... | |
// Add tree:
|
||
$treeArr = array_merge($treeArr, $this->tree);
|
||
}
|
||
ksort($treeArr);
|
||
return $this->printTree($treeArr);
|
||
}
|
||