Skip to content

Commit

Permalink
FIX: cyclic error in positional array sorted
Browse files Browse the repository at this point in the history
unescaped at-sign leads to errors now for some reason
  • Loading branch information
Maximilian Schmidt committed Dec 7, 2021
1 parent 283a9d3 commit 0d70fd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/Fusion/Debugger.php
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ public function flattenPrototypeDefinition(array $definition)
unset($results[self::PROTOTYPE_OBJECT_NAME_KEY]);

// Sort the data by their positional array property
$sortedResults = new PositionalArraySorter($results, '@position');
$sortedResults = new PositionalArraySorter($results, '\@position');
$results = $sortedResults->toArray();

// Move all meta keys to the beginning of the array
Expand Down

0 comments on commit 0d70fd7

Please sign in to comment.