Skip to content

Commit

Permalink
Expermineting to drag results
Browse files Browse the repository at this point in the history
  • Loading branch information
PatrikBuetler committed Jun 24, 2024
1 parent ebc0155 commit c44abe0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/ui/Rearranger.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public function seekAndSwap($array, $goal, $direction) {
foreach ($array as $goalkey => $element) {
$found = $this->searchInside($element, $goal);
if ($found) {
$temparray = $element;
$temparray = $array;
$tempkey = $goalkey;
echo "Element found inside this array:\n";
print_r($element, false);
Expand Down

0 comments on commit c44abe0

Please sign in to comment.