diff --git a/typo3/sysext/backend/Classes/Tree/View/AbstractTreeView.php b/typo3/sysext/backend/Classes/Tree/View/AbstractTreeView.php index f5eef50d334215c268dc58a43061c49930bf8978..2f520a1cee3cd4994f19699f729cbe3df627fce6 100644 --- a/typo3/sysext/backend/Classes/Tree/View/AbstractTreeView.php +++ b/typo3/sysext/backend/Classes/Tree/View/AbstractTreeView.php @@ -960,7 +960,9 @@ abstract class AbstractTreeView if ($res < 0) { $row = false; } else { - list(, $row) = each($this->dataLookup[$res][$this->subLevelID]); + $key = key($this->dataLookup[$res][$this->subLevelID]); + next($this->dataLookup[$res][$this->subLevelID]); + $row = $this->dataLookup[$res][$this->subLevelID][$key]; } return $row; } diff --git a/typo3/sysext/core/Classes/Database/QueryGenerator.php b/typo3/sysext/core/Classes/Database/QueryGenerator.php index 39ef793e0db2aa2f3270680354b20afe864e5fee..f0a7ca3f8304560078f1bb5562c31e82b2194656 100644 --- a/typo3/sysext/core/Classes/Database/QueryGenerator.php +++ b/typo3/sysext/core/Classes/Database/QueryGenerator.php @@ -1214,7 +1214,7 @@ class QueryGenerator $retArr = []; while (is_array($arr)) { reset($arr); - list($key, ) = each($arr); + $key = key($arr); $retArr[] = $key; $arr = $arr[$key]; } diff --git a/typo3/sysext/core/Tests/Unit/Database/QueryGeneratorTest.php b/typo3/sysext/core/Tests/Unit/Database/QueryGeneratorTest.php new file mode 100644 index 0000000000000000000000000000000000000000..824006622efd37b4987023bc8f276d1e5fefcff7 --- /dev/null +++ b/typo3/sysext/core/Tests/Unit/Database/QueryGeneratorTest.php @@ -0,0 +1,122 @@ +<?php +declare(strict_types = 1); +namespace TYPO3\CMS\Core\Tests\Unit\Database; + +/* + * This file is part of the TYPO3 CMS project. + * + * It is free software; you can redistribute it and/or modify it under + * the terms of the GNU General Public License, either version 2 + * of the License, or any later version. + * + * For the full copyright and license information, please read the + * LICENSE.txt file that was distributed with this source code. + * + * The TYPO3 project - inspiring people to share! + */ + +use TYPO3\CMS\Core\Database\QueryGenerator; +use TYPO3\TestingFramework\Core\Unit\UnitTestCase; + +/** + * Test case + */ +class QueryGeneratorTest extends UnitTestCase +{ + /** + * @return array + */ + public function getSubscriptReturnsExpectedValuesDataProvider(): array + { + return [ + 'multidimensional array input' => [ + [ + 'foo' => [ + 'bar' => 1, + 'baz' => [ + 'jane' => 1, + 'john' => 'doe', + ], + 'fae' => 1, + ], + 'don' => [ + 'dan' => 1, + 'jim' => [ + 'jon' => 1, + 'jin' => 'joh', + ], + ], + 'one' => [ + 'two' => 1, + 'three' => [ + 'four' => 1, + 'five' =>'six', + ], + ] + ], + [ + 0 => 'foo', + 1 => 'bar', + ], + ], + 'array with multiple entries input' => [ + [ + 'foo' => 1, + 'bar' => 2, + 'baz' => 3, + 'don' => 4, + ], + [ + 0 => 'foo', + ], + ], + 'array with one entry input' => [ + [ + 'foo' => 'bar', + ], + [ + 0 => 'foo', + ], + ], + 'empty array input' => [ + [], + [ + 0 => null, + ], + ], + 'empty multidimensional array input' => [ + [[[[]]], [[]], [[]]], + [ + 0 => 0, + 1 => 0, + 2 => 0, + 3 => null, + ], + ], + 'null input' => [ + null, + [], + ], + 'string input' => [ + 'foo bar', + [], + ], + 'numeric input' => [ + 3.14, + [], + ], + ]; + } + + /** + * @test + * @dataProvider getSubscriptReturnsExpectedValuesDataProvider + * @param $input + * @param array $expectedArray + */ + public function getSubscriptReturnsExpectedValues($input, array $expectedArray) + { + $subject = new QueryGenerator(); + $this->assertSame($expectedArray, $subject->getSubscript($input)); + } +} diff --git a/typo3/sysext/workspaces/Classes/Service/StagesService.php b/typo3/sysext/workspaces/Classes/Service/StagesService.php index 6d7855d300f852b7f1dff10e9b34f81b25642bde..74efd55864f63db7753f74b644aed11b0d8c288b 100644 --- a/typo3/sysext/workspaces/Classes/Service/StagesService.php +++ b/typo3/sysext/workspaces/Classes/Service/StagesService.php @@ -626,11 +626,11 @@ class StagesService implements \TYPO3\CMS\Core\SingletonInterface if (trim($row['subgroup'])) { // Make integer list $theList = implode(',', GeneralUtility::intExplode(',', $row['subgroup'])); - // Get the subarray - $subbarray = $this->fetchGroups($theList, $idList . ',' . $uid); - list($subUid, $subArray) = each($subbarray); - // Merge the subarray to the already existing userGroups array - $this->userGroups[$subUid] = $subArray; + // Get the subgroups + $subGroups = $this->fetchGroups($theList, $idList . ',' . $uid); + // Merge the subgroups to the already existing userGroups array + $subUid = key($subGroups); + $this->userGroups[$subUid] = $subGroups[$subUid]; } } }