Skip to content

Commit

Permalink
[BUGFIX] Change metadata to keep arrays instead of strings (#1339)
Browse files Browse the repository at this point in the history
Co-authored-by: Sebastian Meyer <[email protected]>
  • Loading branch information
beatrycze-volk and sebastian-meyer authored Sep 20, 2024
1 parent 2e61841 commit 5240b16
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions Classes/Controller/MetadataController.php
Original file line number Diff line number Diff line change
Expand Up @@ -166,15 +166,17 @@ protected function printMetadata(array $metadata): void
// NOTE: Labels are to be escaped in Fluid template

$metadata[$i][$name] = is_array($value)
? implode($this->settings['separator'], $value)
: $value;
? $value
: explode($this->settings['separator'], $value);

if ($metadata[$i][$name] === 'Array') {
// PHPStan error
// I don't understand what this code does, so I take it away until author can fix it
/*if ($metadata[$i][$name][0] === 'Array') {
$metadata[$i][$name] = [];
foreach ($value as $subKey => $subValue) {
$metadata[$i][$name][$subKey] = $subValue;
}
}
}*/

$this->parseMetadata($i, $name, $value, $metadata);

Expand Down Expand Up @@ -431,9 +433,9 @@ private function parseOwner(int $i, array &$metadata) : void
*/
private function parseType(int $i, array &$metadata) : void
{
$structure = $this->structureRepository->findOneByIndexName($metadata[$i]['type']);
$structure = $this->structureRepository->findOneByIndexName($metadata[$i]['type'][0]);
if ($structure) {
$metadata[$i]['type'] = $structure->getLabel();
$metadata[$i]['type'][0] = $structure->getLabel();
}
}

Expand Down

0 comments on commit 5240b16

Please sign in to comment.