From: travis%sedsystems.ca <> Date: Fri, 11 Mar 2005 06:34:06 +0000 (+0000) Subject: Bug 187658 : Group checkboxes are not sorted consistently X-Git-Tag: bugzilla-2.19.3~170 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e0a82d28f49ea7651b66d48271106965c34b4331;p=thirdparty%2Fbugzilla.git Bug 187658 : Group checkboxes are not sorted consistently Patch by Shane H. W. Travis r=wurblzap a=justdave --- diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm index 4e494b8a6f..62719de569 100755 --- a/Bugzilla/Bug.pm +++ b/Bugzilla/Bug.pm @@ -458,7 +458,8 @@ sub groups { " LEFT JOIN group_control_map" . " ON group_control_map.group_id = groups.id" . " AND group_control_map.product_id = ? " . - " WHERE isbuggroup = 1"); + " WHERE isbuggroup = 1" . + " ORDER BY description"); $sth->execute($self->{'bug_id'}, Bugzilla->user->id, $self->{'product_id'});