Bug #24213
closedTypoScript: insertData change (#23826) probably causes side-effect
0%
Description
#23826 (stdWrap "insertData" does not work anymore if using "override" additionally) kills my existing TypoScript.
See the (simplified) code below, without this change (aka 4.4), the image contains default.jpg, after (4.5, rev 9195) it's just white.
Don't know, if the TypoScript should never have worked, but just did, or a new bug was introduced.
page.10.marks.HEAD = IMAGE
page.10.marks.HEAD.file = GIFBUILDER
page.10.marks.HEAD.file {
XY = 300, 200
10 = IMAGE
10 {
file {
width = 980
# Prefer image from resources field of (parent) page, if set
import {
cObject = TEXT
# Fallback
cObject.value = fileadmin/default.jpg
cObject.override {
required = 1
data = levelmedia:-1,slide
wrap = uploads/media/
listNum = 0
}
}
}
}
}
(issue imported from #M16579)