]> git.donarmstrong.com Git - debbugs.git/commitdiff
[project @ 2005-07-17 19:04:37 by cjwatson]
authorcjwatson <>
Mon, 18 Jul 2005 02:04:37 +0000 (18:04 -0800)
committercjwatson <>
Mon, 18 Jul 2005 02:04:37 +0000 (18:04 -0800)
drop support for separate database of found/fixed versions

cgi/common.pl

index 6032390b571157301c7dcafe8507333aed7f0f71..5f1185f6d0bddd93d95e03848e22c817739d920d 100644 (file)
@@ -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 (<BUGVER>) {
-                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};