diff options
author | lpsolit%gmail.com <> | 2006-05-30 04:15:56 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2006-05-30 04:15:56 +0200 |
commit | f3254c63caf96f5a1106272d8393a66f4a32fc42 (patch) | |
tree | d5c3e0e61dcff68e4f7728c382af479cf6cd576c /query.cgi | |
parent | ff51ae68bcb065dc9f8cce11718ac8b088864593 (diff) | |
download | bugzilla-f3254c63caf96f5a1106272d8393a66f4a32fc42.tar.gz bugzilla-f3254c63caf96f5a1106272d8393a66f4a32fc42.tar.xz |
Bug 335790: Field names in search form lists should be ordered alphabetically - Patch by Toms Baugis <toms.baugis@gmail.com> r=wicked a=myk
Diffstat (limited to 'query.cgi')
-rwxr-xr-x | query.cgi | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -282,6 +282,7 @@ $vars->{'bug_severity'} = \@::legal_severity; my @fields; push(@fields, { name => "noop", description => "---" }); push(@fields, $dbh->bz_get_field_defs()); +@fields = sort {lc($a->{'description'}) cmp lc($b->{'description'})} @fields; $vars->{'fields'} = \@fields; # Creating new charts - if the cmd-add value is there, we define the field |