From 17e96b5980256e88ad51f6882e61f6a370c7a30d Mon Sep 17 00:00:00 2001 From: stonebuzz Date: Fri, 17 Nov 2023 12:10:40 +0100 Subject: [PATCH] fix object entries ordering --- inc/typefamily.class.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/inc/typefamily.class.php b/inc/typefamily.class.php index 521e5f1..6f41875 100644 --- a/inc/typefamily.class.php +++ b/inc/typefamily.class.php @@ -99,7 +99,8 @@ static function getItemtypesByFamily($families_id) { [ 'plugin_genericobject_typefamilies_id' => $families_id, 'is_active' => 1 - ] + + ] + ['ORDER' => 'name'] ); } }