Skip to content

Commit

Permalink
fix: file sort order
Browse files Browse the repository at this point in the history
Sort by full path.
  • Loading branch information
kenjis committed Oct 16, 2023
1 parent 364d9e1 commit 87ea6a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions system/Debug/Toolbar/Collectors/Files.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,13 @@ public function display(): array

if (strpos($path, 'SYSTEMPATH') !== false) {
$coreFiles[] = [
'name' => basename($file),
'path' => $path,
'name' => basename($file),
];
} else {
$userFiles[] = [
'name' => basename($file),
'path' => $path,
'name' => basename($file),
];
}
}
Expand Down

0 comments on commit 87ea6a9

Please sign in to comment.