.. _known-problems: ============== Known Problems ============== .. note:: If you encounter an error, please report it `here `__. Current limitation in :typoscript:`FragmentIdentifierProcessor` =============================================================== While the DataProcessor can process TypoScript references (:typoscript:`=<`) to other cObjects **inside** :typoscript:`fragmentIdentifier`, :typoscript:`lib.contentElement.variables.fragmentIdentifier` must not be a reference by itself. .. code-block:: typoscript // 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 }