Bug #102841
closedArray to string conversion for list_type itemGroups "header"
Added by Oliver Bartsch 10 months ago. Updated 5 months ago.
100%
Updated by Gerrit Code Review 10 months ago
- Status changed from New to Under Review
Patch set 1 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/82462
Updated by Gerrit Code Review 10 months ago
Patch set 2 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/82462
Updated by Gerrit Code Review 10 months ago
Patch set 3 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/82462
Updated by Nikita Hovratov 10 months ago
- Has duplicate Bug #102842: PHP Warning: Array to string conversion when group id does not exist for plugin added
Updated by Nikita Hovratov 10 months ago
- Related to Bug #102826: registerPlugin can not handle SelectItems API from v12 added
Updated by Gerrit Code Review 10 months ago
Patch set 4 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/82462
Updated by Gerrit Code Review 10 months ago
Patch set 5 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/82462
Updated by Gerrit Code Review 10 months ago
Patch set 6 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/82462
Updated by Gerrit Code Review 10 months ago
Patch set 1 for branch 12.4 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/82477
Updated by Oliver Bartsch 10 months ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset 871b951616114a7e8ce7afd015c7a378bc16f026.
Updated by Daniel Ostmann 10 months ago
There is a little bug left in your if condition in line 1003 in ExtensionManagementUtility:
if ($type === 'list_type' && !isset($GLOBALS['TCA']['tt_content']['columns'][$type]['itemGroups'][$selectItem->getGroup()])) {
The sub array "config" is missing:
if ($type === 'list_type' && !isset($GLOBALS['TCA']['tt_content']['columns'][$type] *['config']* ['itemGroups'][$selectItem->getGroup()])) {
Updated by Oliver Bartsch 10 months ago
- Has duplicate Bug #103012: regiserPlugin breaks tca select item group added
Updated by Oliver Bartsch 10 months ago
- Has duplicate deleted (Bug #103012: regiserPlugin breaks tca select item group)
Updated by Nikita Hovratov 10 months ago
Daniel Ostmann wrote in #note-12:
There is a little bug left in your if condition in line 1003 in ExtensionManagementUtility:
[...]
The sub array "config" is missing:
[...]
I think you've looked at the wrong change side. This is how it was before but was fixed with this patch.
This is stated in the commit message:
This does now properly work by using the
correct array access in the if clause