From 09aead6f452144c9469835e259d3dee6176e2486 Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" <> Date: Mon, 3 Jul 2006 16:33:27 +0000 Subject: [PATCH] =?utf8?q?Bug=20342828:=20keyword=20cache=20is=20not=20sor?= =?utf8?q?ted=20alphabetically,=20makes=20sorting=20by=20keyword=20inconsi?= =?utf8?q?stent=20-=20Patch=20by=20R=C3=A9mi=20Zara=20=20r=3DLpSolit=20a=3Djustdave?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- post_bug.cgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/post_bug.cgi b/post_bug.cgi index f2b9d1676b..94f224940e 100755 --- a/post_bug.cgi +++ b/post_bug.cgi @@ -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()); -- 2.47.2