Skip to content
Snippets Groups Projects
Commit 0257312e authored by Peter Rotich's avatar Peter Rotich
Browse files

Merge pull request #3053 from greezybacon/issue/3049


oops: Fix manual sort on help topic admin listing page

Reviewed-By: default avatarPeter Rotich <peter@osticket.com>
parents 92646093 71975924
No related branches found
No related tags found
No related merge requests found
......@@ -100,7 +100,8 @@ $order_by = 'sort';
$names[$topic->getId()] = $topic->getFullName();
$topics[$topic->getId()] = $topic;
}
$names = Internationalization::sortKeyedList($names);
if ($cfg->getTopicSortMode() != 'm')
$names = Internationalization::sortKeyedList($names);
$defaultDept = $cfg->getDefaultDept();
$defaultPriority = $cfg->getDefaultPriority();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment