From: Markus Kolb Date: Thu, 26 Jul 2012 20:43:30 +0000 (-0400) Subject: Bug 774625 - describecomponents.cgi - product category listing is not sorted X-Git-Tag: bugzilla-4.2.2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9076d41e60406366a7d9476dda6d137416b07c2d;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 391e416af3..f8c490b1a7 100644 --- a/Bugzilla/User.pm +++ b/Bugzilla/User.pm @@ -1069,7 +1069,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 {