From 55fea45ed8fe967c900bb22e976f7b77fa2902a0 Mon Sep 17 00:00:00 2001 From: "slamm%netscape.com" Date: Wed, 9 Jun 1999 22:32:42 +0000 Subject: [PATCH] Reverse the order of the notes. Put the most recent on top. Remove unnecessary check for bad mail time. git-svn-id: svn://10.0.0.236/trunk@34510 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/webtools/tinderbox/globals.pl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mozilla/webtools/tinderbox/globals.pl b/mozilla/webtools/tinderbox/globals.pl index 1e93b773292..2091cafc49f 100755 --- a/mozilla/webtools/tinderbox/globals.pl +++ b/mozilla/webtools/tinderbox/globals.pl @@ -237,8 +237,7 @@ sub load_buildlog { binaryname => $binaryname, td => $t }; - if ($mailtime > 0 - and ($form{noignore} or not $t->{ignore_builds}->{$buildname})) { + if ($form{noignore} or not $t->{ignore_builds}->{$buildname}) { push @{$build_list}, $buildrec; } } @@ -443,8 +442,9 @@ sub load_notes { $noteid = $build_table->[$ti][$bi]->{noteid}; $now_str = &print_time($nnow); $note = &url_decode($nenc_note); - $note_array[$noteid] .= "
\n["
-                               ."$nwho - $now_str]\n$note\n
"; + $note_array[$noteid] = "
\n["
+             ."$nwho - $now_str]\n$note\n
" + .$note_array[$noteid]; } } close(NOTES);