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. mustn't 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 won't work:
lib.contentElement {
variables.fragmentIdentifier =< lib.yourCustomFragment
}
Copied!