Skip to content

Commit

Permalink
fix(knowbase): categories in reverse alphanumeric order
Browse files Browse the repository at this point in the history
  • Loading branch information
btry committed May 30, 2024
1 parent 06d9089 commit 8011971
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inc/knowbase.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ public static function getCategoryTree() {
'FROM' => $cat_table,
'ORDER' => [
KnowbaseItemCategory::getTableField('level') . ' DESC',
KnowbaseItemCategory::getTableField('name'),
KnowbaseItemCategory::getTableField('name') . ' DESC',
]
]);

Expand Down

0 comments on commit 8011971

Please sign in to comment.