From: Markus Kolb Date: Thu, 26 Jul 2012 20:36:44 +0000 (-0400) Subject: Bug 774625 - describecomponents.cgi - product category listing is not sorted X-Git-Tag: bugzilla-4.3.2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6bdf0f7971bd726b803858dce8326b9af9c62b48;p=thirdparty%2Fbugzilla.git Bug 774625 - describecomponents.cgi - product category listing is not sorted r=dkl, a=LpSolit --- diff --git a/Bugzilla/User.pm b/Bugzilla/User.pm index 7ce66aa8f4..9c869dc635 100644 --- a/Bugzilla/User.pm +++ b/Bugzilla/User.pm @@ -1081,7 +1081,7 @@ sub get_accessible_products { @{$self->get_selectable_products}, @{$self->get_enterable_products}; - return [ values %products ]; + return [ sort { $a->name cmp $b->name } values %products ]; } sub check_can_admin_product {