Actions
Bug #97011
closedPHP warning because if missing comma as element separator WorkspaceService
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
-
Target version:
-
Start date:
2022-02-23
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
11
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
missing komma in php-function array_merge on line 658 results in PHP_Warning or Error when calling the function:
from
array_merge($pageList [ (int)$mountPoint ],$this->getPageChildrenRecursive((int)$mountPoint, (int)$recursionLevel, 0, $permsClause));
to
array_merge($pageList, [ (int)$mountPoint ],$this->getPageChildrenRecursive((int)$mountPoint, (int)$recursionLevel, 0, $permsClause));
all array need to be seperated by comma
This issue was automatically created from https://github.com/TYPO3/typo3/pull/359
Actions