From 6b15c47c1e2af3e859c173cbc3291df3af6072dc Mon Sep 17 00:00:00 2001 From: cjwatson <> Date: Sun, 17 Jul 2005 18:04:37 -0800 Subject: [PATCH] [project @ 2005-07-17 19:04:37 by cjwatson] drop support for separate database of found/fixed versions --- cgi/common.pl | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/cgi/common.pl b/cgi/common.pl index 6032390..5f1185f 100644 --- a/cgi/common.pl +++ b/cgi/common.pl @@ -785,24 +785,6 @@ sub getbugstatus { %status = %{ readbug( $bugnum, $location ) }; $status{ id } = $bugnum; - $status{found_versions} = []; - $status{fixed_versions} = []; - if (defined $gVersionBugsDir and - (defined $common_version or defined $common_dist)) { - my $bughash = get_hashname($bugnum); - if (open BUGVER, "< $gVersionBugsDir/$bughash/$bugnum.versions") { - local $_; - while () { - if (/^Found-in: (.*)/i) { - $status{found_versions} = [split ' ', $1]; - } elsif (/^Fixed-in: (.*)/i) { - $status{fixed_versions} = [split ' ', $1]; - } - } - close BUGVER; - } - } - $status{tags} = $status{keywords}; my %tags = map { $_ => 1 } split ' ', $status{tags}; -- 2.39.2