Project

General

Profile

Actions

Bug #23826

closed

stdWrap "insertData" does not work anymore if using "override" additionally

Added by Susanne Moog over 13 years ago. Updated about 13 years ago.

Status:
Closed
Priority:
Should have
Assignee:
-
Category:
-
Target version:
-
Start date:
2010-10-22
Due date:
% Done:

0%

Estimated time:
TYPO3 Version:
4.5
PHP Version:
5.3
Tags:
Complexity:
Is Regression:
Sprint Focus:

Description

Try the following TS:

page.100 = TEXT
page.100 {
value = polly wants {field:uid} cracker(s)
override.cObject = TEXT
override.cObject {
value = smells like teen spirit
if.value = 11
if.equals = 123
}
insertData = 1
}

Expected output would be something like

polly wants 69 cracker(s)

Output is:
polly wants {field:uid} cracker(s)

Now try the following:
page.100 = TEXT
page.100 {
value = polly wants {field:uid} cracker(s)
insertData = 1
}

The output is now correct. So as soon as the override is used it does not work anymore (I have currently not tested whether outher properties produce the same fault)

trunk rev 9195

(issue imported from #M16110)


Files

tslib_content.diff (2.21 KB) tslib_content.diff Administrator Admin, 2010-10-22 16:25

Related issues 3 (0 open3 closed)

Related to TYPO3 Core - Bug #23913: Regression : Typoscript "required" did not work anymoreClosedSteffen Kamper2010-11-02

Actions
Related to TYPO3 Core - Bug #24213: TypoScript: insertData change (#23826) probably causes side-effectClosedSteffen Gebert2010-11-26

Actions
Has duplicate TYPO3 Core - Bug #24056: innerWrap2 only working if innerWrap existsClosed2010-11-15

Actions
Actions #1

Updated by Jo Hasenau over 13 years ago

Actually it works with override only, but stops working as soon as an "if" condition is involved, that returns false

So this works:

10 = TEXT
10 {
value = Text with {field:title}
override.cObject = TEXT
override.cObject {
value = Another text with {field:title}
if.value = 11
if.equals = 11
}
insertData = 1
}

while this won't:

10 = TEXT
10 {
value = Text with {field:title}
override.cObject = TEXT
override.cObject {
value = Another text with {field:title}
if.value = 11
if.equals = 123
}
insertData = 1
}

Actions #2

Updated by Jo Hasenau over 13 years ago

I tracked it down to a missing check for recursive or nested stdWrap calls.

So if there is at least one conditional function (if, required, fieldRequired) returning false, the whole rendering process stops after this function and nothing will be executed from that point on.

The attached patch Introduces a variable $this->stdWrapRecursionLevel.
It solves the problem, since the check for $this->stopRendering[$this->stdWrapRecursionLevel] is done within the current stdWrap function call only and doesn't influence the rest of the rendering process anymore.

Actions #3

Updated by Ernesto Baschny over 13 years ago

committed to trunk rev 9195 by Susanne Moog

Actions #4

Updated by Susanne Moog about 13 years ago

  • Target version deleted (4.5.0)
Actions

Also available in: Atom PDF