Actions
Bug #22824
closedwrong menu level-wrapping when shortcuts are set
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
-
Target version:
-
Start date:
2010-06-06
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
4.3
PHP Version:
5.2
Tags:
Complexity:
Is Regression:
No
Sprint Focus:
Description
You have a page tree like this:
father
- son1
- son2
father will be level 1, son1 and son2 level 2 (one levvel deeper)
The "father" shoud be shortcut to one of the sons, the 1st e.g.
with this wrapping:
wrap = <ul>|</ul>
1 = TMENU
1 {
NO = 1
NO.wrapItemAndSub = <li>|</li>
}
2 < .1
2.NO.wrapItemAndSub = <li class="liL1">|</li>
...
}
you will get this in the html-source:
<ul>
<li>father</li>
<li>son1</li>
<li class="liL1">son2</li>
</ul>
instead of:
<ul>
<li>father</li>
<li class="liL1">son1</li>
<li class="liL1">son2</li>
</ul>
how it should be (or not?).
the page one level deeper than the shortcut-page inherits the level of the fatherpage!?
Build a scenario like that above.
(issue imported from #M14634)
Actions