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 fragmentIdentifier, lib.contentElement.variables.fragmentIdentifier 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
}