Commit 3a6d6e9f authored by lpsolit%gmail.com's avatar lpsolit%gmail.com

Bug 342828: keyword cache is not sorted alphabetically, makes sorting by keyword…

Bug 342828: keyword cache is not sorted alphabetically, makes sorting by keyword inconsistent - Patch by Rémi Zara <remi_zara@mac.com> r=LpSolit a=justdave
parent f447fd56
......@@ -509,7 +509,8 @@ if (UserInGroup("editbugs")) {
my $list = $dbh->selectcol_arrayref(qq{
SELECT name
FROM keyworddefs
WHERE id IN ($kw_ids)});
WHERE id IN ($kw_ids)
ORDER BY name});
my $kw_list = join(', ', @$list);
$dbh->do(q{UPDATE bugs
SET delta_ts = ?, keywords = ?
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment