From c84c1809b5bda16318a5dad7be9440a1be4a5fc0 Mon Sep 17 00:00:00 2001 From: "gerv%gerv.net" <> Date: Mon, 7 Oct 2002 13:44:06 +0000 Subject: Bug 172740 - "use of uninitialized variable" warnings. Patch by gerv; r=bbaetz. --- buglist.cgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'buglist.cgi') diff --git a/buglist.cgi b/buglist.cgi index 8c8f52008..4e1a8eec4 100755 --- a/buglist.cgi +++ b/buglist.cgi @@ -83,7 +83,7 @@ else { } # Hack to support legacy applications that think the RDF ctype is at format=rdf. -if ($::FORM{'format'} eq "rdf" && !$::FORM{'ctype'}) { +if ($::FORM{'format'} && $::FORM{'format'} eq "rdf" && !$::FORM{'ctype'}) { $::FORM{'ctype'} = "rdf"; delete($::FORM{'format'}); } -- cgit v1.2.3-24-g4f1b