Skip to content

Commit 8011971

Browse files
committed
fix(knowbase): categories in reverse alphanumeric order
1 parent 06d9089 commit 8011971

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

inc/knowbase.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ public static function getCategoryTree() {
136136
'FROM' => $cat_table,
137137
'ORDER' => [
138138
KnowbaseItemCategory::getTableField('level') . ' DESC',
139-
KnowbaseItemCategory::getTableField('name'),
139+
KnowbaseItemCategory::getTableField('name') . ' DESC',
140140
]
141141
]);
142142

0 commit comments

Comments
 (0)