From fa442f6e019efca2285e37189d93b8a881687cfb Mon Sep 17 00:00:00 2001 From: doogie <> Date: Fri, 17 Aug 2001 05:56:59 -0800 Subject: [PATCH] [project @ 2001-08-17 06:56:59 by doogie] Oops. Was not correctly opening the file(was referencing a non-existant var) in getbugstatus. --- cgi/common.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cgi/common.pl b/cgi/common.pl index 17f5b4f5..e506cb9b 100644 --- a/cgi/common.pl +++ b/cgi/common.pl @@ -404,7 +404,7 @@ sub getbugstatus { my $dir = getbugdir( $bugnum, "status" ); return {} if ( !$dir ); - open S, "< $status{ file }"; + open S, "< $dir/$bugnum.status"; my @lines = qw(originator date subject msgid package tags done forwarded mergedwith severity); while() { -- 2.39.5