From: cjwatson <> Date: Mon, 18 Jul 2005 02:04:37 +0000 (-0800) Subject: [project @ 2005-07-17 19:04:37 by cjwatson] X-Git-Tag: release/2.6.0~708 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=6b15c47c1e2af3e859c173cbc3291df3af6072dc;p=debbugs.git [project @ 2005-07-17 19:04:37 by cjwatson] drop support for separate database of found/fixed versions --- diff --git a/cgi/common.pl b/cgi/common.pl index 6032390b..5f1185f6 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};