Known Problems
Note
If you encounter an error, please report it here.
Current limitation in
FragmentIdentifierProcessor
While the DataProcessor can process TypoScript references (
=<
)
to other cObjects inside
fragment,
lib. must not be a
reference by itself.
// This would work:
lib.contentElement {
variables.fragmentIdentifier < lib.yourCustomFragment
}
// This would work:
lib.contentElement {
variables.fragmentIdentifier = COA
variables.fragmentIdentifier {
10 =< lib.yourCustomFragment
}
}
// This will not work:
lib.contentElement {
variables.fragmentIdentifier =< lib.yourCustomFragment
}
Copied!