diff options
author | kiko%async.com.br <> | 2004-02-12 12:45:17 +0000 |
---|---|---|
committer | kiko%async.com.br <> | 2004-02-12 12:45:17 +0000 |
commit | ecdfa3b6e6f10429a873d7c88a66e958c6ac3ae3 (patch) | |
tree | 4542c12a82aa1de7e54a74389565ef83e0e5b2e0 | |
parent | 9d6d4973520e1b05e1699e7a8f63e9ca2e773b77 (diff) | |
download | bugs-ecdfa3b6e6f10429a873d7c88a66e958c6ac3ae3.tar bugs-ecdfa3b6e6f10429a873d7c88a66e958c6ac3ae3.tar.gz bugs-ecdfa3b6e6f10429a873d7c88a66e958c6ac3ae3.tar.bz2 bugs-ecdfa3b6e6f10429a873d7c88a66e958c6ac3ae3.tar.xz bugs-ecdfa3b6e6f10429a873d7c88a66e958c6ac3ae3.zip |
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.
-rwxr-xr-x | query.cgi | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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}} ]; } |