]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 342828: keyword cache is not sorted alphabetically, makes sorting by keyword...
authorlpsolit%gmail.com <>
Mon, 3 Jul 2006 16:33:27 +0000 (16:33 +0000)
committerlpsolit%gmail.com <>
Mon, 3 Jul 2006 16:33:27 +0000 (16:33 +0000)
post_bug.cgi

index f2b9d1676b5e0e3ed46829648c0e092058e18309..94f224940e352053fba3a1541f1a304a1dae8d77 100755 (executable)
@@ -438,7 +438,7 @@ if (UserInGroup("editbugs")) {
     if (@keywordlist) {
         # Make sure that we have the correct case for the kw
         SendSQL("SELECT name FROM keyworddefs WHERE id IN ( " .
-                join(',', @keywordlist) . ")");
+                join(',', @keywordlist) . ") ORDER BY name");
         my @list;
         while (MoreSQLData()) {
             push (@list, FetchOneColumn());