Actions
Bug #105541
openTYPO3 13.4: calling getSysTemplateRowsByRootline with empty array as $rootline causes sql error
Status:
Under Review
Priority:
Should have
Assignee:
-
Category:
TypoScript
Target version:
-
Start date:
2024-11-05
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
13
PHP Version:
8.2
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
If $rootline is empty, then a SQL like the following is produced by the query builder:
```
SELECT sys_template.* FROM sys_template INNER JOIN (SELECT ) pidlist ON (sys_template.pid = pidlist.uid)
```
The method is for exmample called by solr with an empty $rootline array if there are not typoscript records. This blows up the whole scheduler backend module even for unrelated scheduler tasks, see also https://github.com/TYPO3-Solr/ext-solr/issues/4208
If the $rootline array is empty it should be safe to return [] in this method.
If we do not want the method to be called at all with an empty array we should throw an exception.
Files
Actions