Skip to content

Commit

Permalink
[TASK] Use single quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
ochorocho committed Feb 13, 2024
1 parent 22c4fec commit ea64ff1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/LinkHandler/PageLinkHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ protected function getRecordsOnExpandedPage($pageId)

$colPosMapping = [];
foreach ($colPosArray as $colPos) {
$colPosMapping[(int)($colPos[1] ?? $colPos["value"])] = $colPos[0] ?? $colPos['label'];
$colPosMapping[(int)($colPos[1] ?? $colPos['value'])] = $colPos[0] ?? $colPos['label'];
}
// Enrich list of records
$groupedContentElements = [];
Expand Down

0 comments on commit ea64ff1

Please sign in to comment.