summaryrefslogtreecommitdiffstats
path: root/process_bug.cgi
diff options
context:
space:
mode:
Diffstat (limited to 'process_bug.cgi')
-rwxr-xr-xprocess_bug.cgi5
1 files changed, 4 insertions, 1 deletions
diff --git a/process_bug.cgi b/process_bug.cgi
index e7d2de104..f85fd45d6 100755
--- a/process_bug.cgi
+++ b/process_bug.cgi
@@ -1334,7 +1334,10 @@ foreach my $id (@idlist) {
$cgi->param('delta_ts'));
$vars->{'start_at'} = $cgi->param('longdesclength');
- $vars->{'comments'} = Bugzilla::Bug::GetComments($id);
+
+ # Always sort midair collision comments oldest to newest,
+ # regardless of the user's personal preference.
+ $vars->{'comments'} = Bugzilla::Bug::GetComments($id, "oldest_to_newest");
$cgi->param('delta_ts', $delta_ts);