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);