Actions
Bug #24225
closedslide doesn't work without collect
Start date:
2010-11-29
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
4.5
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
"slide" doesn't work without activating "slide.collect".
The following TS does nothing:
styles.content.getRight.slide = -1
page.10.marks.RIGHTCOL < styles.content.getRight
But the following works (middle line added):
styles.content.getRight.slide = -1
styles.content.getRight.slide.collect = -1
page.10.marks.RIGHTCOL < styles.content.getRight
Unfortunately the "working" code drags in too much content (current page + parent pages), therefore it's not a real option.
(issue imported from #M16594)
Files
Updated by Steffen Gebert almost 14 years ago
Could this be a duplicate of #24213?
Updated by Jo Hasenau almost 14 years ago
Nope - this is due to a buggy "translation" of a double ternary operator into an if/else clause.
Attached Patch solves the problem.
Updated by Ernesto Baschny almost 14 years ago
Committed to trunk rev. 9731. Thanks!
Actions