Bug #90334
closedCommand "site:list" outputs wrong lines only with "Locale" and "Status"
100%
Description
We are using multiple site-configurations. The CLI-command "site:list" outputs after every new line one additional wrong line with only locale and status.
sysext/core/Classes/Command/SiteListCommand.php
Current code:
[...]
foreach ($sites as $site) {
$baseUrls = [];
$languages = [];
foreach ($site->getLanguages() as $language) {
[...]
Fixed code:
[...]
foreach ($sites as $site) {
$baseUrls = [];
$languages = [];
$locales = [];
$status = [];
foreach ($site->getLanguages() as $language) {
[...]
Files
Updated by Gerrit Code Review almost 5 years ago
- Status changed from New to Under Review
Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/63180
Updated by Gerrit Code Review almost 5 years ago
Patch set 2 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/63180
Updated by Gerrit Code Review almost 5 years ago
Patch set 3 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/63180
Updated by Gerrit Code Review almost 5 years ago
Patch set 1 for branch 9.5 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/63120
Updated by Georg Ringer almost 5 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset a4668f7f17bff0f2f67e76bb3e6dcab3409bfc86.