From 89eccc9b74482b8c636a02d3a6bcf3ec2947eb7b Mon Sep 17 00:00:00 2001 From: "terry%netscape.com" <> Date: Sat, 21 Nov 1998 03:18:33 +0000 Subject: Backed out Andrew's patch -- turns out it was doing quoting sublty wrong. --- show_bug.cgi | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) (limited to 'show_bug.cgi') diff --git a/show_bug.cgi b/show_bug.cgi index 06e02da2b..98829e356 100755 --- a/show_bug.cgi +++ b/show_bug.cgi @@ -22,19 +22,16 @@ use diagnostics; use strict; -use vars @::FORM; +print "Content-type: text/html\n"; +print "\n"; require "CGI.pl"; -confirm_login(); - -print "Content-type: text/html\n\n"; - -if (!defined $::FORM{'id'} || $::FORM{'id'} eq "") { - PutHeader("Search By Bug Number", "Search By Bug Number", ""); - print "
\n"; +if (!defined $::FORM{'id'}) { + print "

Search By Bug Number

\n"; + print "\n"; print "You may find a single bug by entering its bug id here: \n"; - print "\n"; + print "\n"; print "\n"; print "
\n"; exit; -- cgit v1.2.3-24-g4f1b