based the query on note time, rather than build time

This commit is contained in:
cyeh%netscape.com 1999-07-20 23:44:32 +00:00
parent 22129d6567
commit 19be81ed87

View File

@ -62,7 +62,7 @@ if (defined $tree && defined $start && defined $end) {
chop;
my ($nbuildtime,$nbuildname,$nwho,$nnow,$nenc_note)
= split /\|/;
if ($nbuildtime >= $first && $nbuildtime <= $last) {
if ($nnow >= $first && $nnow <= $last) {
my $note = &url_decode($nenc_note);
$nbuildtime = print_time($nbuildtime);
$nnow = print_time($nnow);
@ -108,7 +108,7 @@ if (defined $tree && defined $start && defined $end) {
chop;
my ($nbuildtime,$nbuildname,$nwho,$nnow,$nenc_note)
= split /\|/;
if ($nbuildtime >= $first && $nbuildtime <= $last) {
if ($nnow >= $first && $nnow <= $last) {
my $note = &url_decode($nenc_note);
$nbuildtime = print_time($nbuildtime);
$nnow = print_time($nnow);