Skip to content
Snippets Groups Projects
Commit bb0fbbf8 authored by jdelhome3578's avatar jdelhome3578 Committed by Jared Hancock
Browse files

topic: Sort list case insensitively

include @greezybacon suggestion on fix
parent b65e9a5c
Branches
Tags
No related merge requests found
......@@ -415,7 +415,7 @@ class Topic {
if (!($names = static::getHelpTopics(false, true)))
return;
uasort($names, function($a, $b) { return strcmp($a, $b); });
uasort($names, function($a, $b) { return strcasecmp($a, $b); });
$update = array_keys($names);
foreach ($update as $idx=>&$id) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment