Ensure v13 compatibility#27
Open
npublish wants to merge 3 commits into
Open
Conversation
added 3 commits
April 16, 2026 16:21
…se orderings) Adjustments aimed at running cleanly on TYPO3 13 / current DBAL: replace legacy QueryBuilder execution, guard category/tag sort settings against the persistence mapping, and delegate the category repository helper to the parent implementation.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
TYPO3 13–oriented maintenance: read filter POST data from the PSR-7 request instead of deprecated helpers, and remove a redundant FlexForm hook registration that is already covered by the Symfony-style event listener.
Changes
NewsListActionEventListener,EnrichDemandObject: replaceGeneralUtility::_POST('tx_news_pi1')with$GLOBALS['TYPO3_REQUEST']->getParsedBody()['tx_news_pi1'] ?? []so request data follows current TYPO3 / PSR-7 usage.ext_localconf.php: same request-based access when registering the Newslistaction as non-cacheable if filter search data is present.ext_localconf.php: removeSC_OPTIONS/FlexFormToolsregistration forFlexFormHook; flex DS merging remains viaConfiguration/Services.yamlandAfterFlexFormDataStructureParsedEvent.