summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Search.pm
diff options
context:
space:
mode:
authorSimon Green <sgreen@redhat.com>2014-07-15 12:18:47 +0200
committerSimon Green <sgreen@redhat.com>2014-07-15 12:18:47 +0200
commit28bcce5b2a1e4344bac8b3d16756db5b89d67966 (patch)
treec92c78b890ba2040099923a21761eeef9af42695 /Bugzilla/Search.pm
parent551eb6d2f6ed6da115b3ab51a966628ac445e29f (diff)
downloadbugzilla-28bcce5b2a1e4344bac8b3d16756db5b89d67966.tar.gz
bugzilla-28bcce5b2a1e4344bac8b3d16756db5b89d67966.tar.xz
Bug 936275 - In buglists, flags are sorted alphabetically instead of using their sortkey
r=dylan, a=glob
Diffstat (limited to 'Bugzilla/Search.pm')
-rw-r--r--Bugzilla/Search.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/Bugzilla/Search.pm b/Bugzilla/Search.pm
index 7368040cc..036e0a605 100644
--- a/Bugzilla/Search.pm
+++ b/Bugzilla/Search.pm
@@ -599,7 +599,8 @@ sub COLUMNS {
. " END)",
'flagtypes.name' => $dbh->sql_group_concat('DISTINCT '
- . $dbh->sql_string_concat('map_flagtypes.name', 'map_flags.status')),
+ . $dbh->sql_string_concat('map_flagtypes.name', 'map_flags.status'),
+ undef, undef, 'map_flagtypes.sortkey, map_flagtypes.name'),
'keywords' => $dbh->sql_group_concat('DISTINCT map_keyworddefs.name'),