From f3ca2d411383d205669b484e970cfe0535948768 Mon Sep 17 00:00:00 2001 From: "kiko%async.com.br" Date: Thu, 12 Feb 2004 04:45:17 +0000 Subject: [PATCH] Adding a comment to avoid further dupes of bug 97736 -- and also because I keep forgetting about the real reason it's there :-) Comment-only change. git-svn-id: svn://10.0.0.236/trunk@152699 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/webtools/bugzilla/query.cgi | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mozilla/webtools/bugzilla/query.cgi b/mozilla/webtools/bugzilla/query.cgi index 80c6ec5d436..7786da96bd1 100755 --- a/mozilla/webtools/bugzilla/query.cgi +++ b/mozilla/webtools/bugzilla/query.cgi @@ -263,6 +263,8 @@ for (my $i = 0; $i < @products; ++$i) { ); if (Param('usetargetmilestone')) { + # Sorting here is required for ordering multiple selections + # correctly; see bug 97736 for discussion on how to fix this $product{'milestones'} = [ sort { lc($a) cmp lc($b) } @{$::target_milestone{$p}} ]; }