Uncaught TYPO3 Exception: An exception occurred while executing 'SELECT * FROM `fe_groups` WHERE (`uid` IN (?)) AND (DER BY fe_groups.title) ORDER BY `title` ASC' with params [261]: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'BY fe_groups.title) ORDER BY `title` ASC' at line 1
The stripLogicalOperatorPrefix should modified be edited to ensure there is always at least one space after AND or OR
Some extensions (like
georgringer/news
, orbeechit/fal-securedownload
) useforeign_table_where
to defineORDER BY …
. With the solution introduced in https://github.com/in2code-de/in2publish_core/commit/cf903641854adbdabc2def1542edda9dbc1b3fa6, this would be cut toDER BY …
, resulting in a PHP exception.The stripLogicalOperatorPrefix should modified be edited to ensure there is always at least one space after
AND
orOR