2009-09-04 Steffen Kamper <info@sk-typo3.de>
+ * Fixed bug #11482: Pagetree: Expand/collaps DB-Mounts buggy (thanks to Andreas Wolf)
* Added feature #10017: [felogin] New Method for "forgotPassword"
2009-09-03 Martin Kutschker <masi@typo3.org>
// if this item is the start of a new level,
// then a new level <ul> is needed, but not in ajax mode
if($v['isFirst'] && !($doCollapse) && !($doExpand && $expandedPageUid == $uid)) {
- $itemHTML = '</div><ul>';
+ $itemHTML = '<ul>';
}
// add CSS classes to the list item
$itemHTML .='
<li id="'.$idAttr.'"'.($classAttr ? ' class="'.$classAttr.'"' : '').'><div class="treeLinkItem">'.
$v['HTML'].
- $this->wrapTitle($this->getTitleStr($v['row'],$titleLen),$v['row'],$v['bank'])."\n";
+ $this->wrapTitle($this->getTitleStr($v['row'],$titleLen),$v['row'],$v['bank'])."</div>\n";
- if(!$v['hasSub']) { $itemHTML .= '</div></li>'; }
+ if(!$v['hasSub']) { $itemHTML .= '</li>'; }
// we have to remember if this is the last one
// on level X so the last child on level X+1 closes the <ul>-tag