From: doogie <> Date: Fri, 17 Aug 2001 13:56:59 +0000 (-0800) Subject: [project @ 2001-08-17 06:56:59 by doogie] X-Git-Tag: release/2.6.0~1106 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=fa442f6e019efca2285e37189d93b8a881687cfb;p=debbugs.git [project @ 2001-08-17 06:56:59 by doogie] Oops. Was not correctly opening the file(was referencing a non-existant var) in getbugstatus. --- diff --git a/cgi/common.pl b/cgi/common.pl index 17f5b4f..e506cb9 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() {