Skip to content

Commit

Permalink
Merge pull request #1173 from Daniel-KM/fix/order_modules
Browse files Browse the repository at this point in the history
Order modules alphabetically.
  • Loading branch information
zerocrates authored Dec 18, 2017
2 parents 9a98299 + ed5753f commit 6d63920
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/src/Controller/Admin/ModuleController.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public function browseAction()

// Order modules by name.
uasort($modules, function ($a, $b) {
return strcmp($a->getName(), $b->getName());
return strcmp(strtolower($a->getName()), strtolower($b->getName()));
});

$view = new ViewModel;
Expand Down

0 comments on commit 6d63920

Please sign in to comment.