]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 187658 : Group checkboxes are not sorted consistently
authortravis%sedsystems.ca <>
Fri, 11 Mar 2005 06:34:06 +0000 (06:34 +0000)
committertravis%sedsystems.ca <>
Fri, 11 Mar 2005 06:34:06 +0000 (06:34 +0000)
Patch by Shane H. W. Travis <travis@sedsystems.ca>   r=wurblzap  a=justdave

Bugzilla/Bug.pm

index 4e494b8a6fddff9a56564edece82bd08f4e34463..62719de56947e237ea69c81796b4db894aaa3e00 100755 (executable)
@@ -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'});