From b9c3dbad825ee0936d1687aff9fdf122d88d6dac Mon Sep 17 00:00:00 2001 From: "jocuri%softhome.net" <> Date: Sat, 10 Apr 2004 22:08:21 +0000 Subject: Patch for bug 87770: make attachment.cgi work with no parameters; patch by GavinS ; r=kiko; a=myk. --- show_bug.cgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'show_bug.cgi') diff --git a/show_bug.cgi b/show_bug.cgi index 9093550ef..7a568e3f5 100755 --- a/show_bug.cgi +++ b/show_bug.cgi @@ -46,7 +46,7 @@ my $single = !$cgi->param('format') && (!$cgi->param('ctype') || $cgi->param('ctype') eq 'html'); # If we don't have an ID, _AND_ we're only doing a single bug, then prompt -if (!defined $cgi->param('id') && $single) { +if (!$cgi->param('id') && $single) { print Bugzilla->cgi->header(); $template->process("bug/choose.html.tmpl", $vars) || ThrowTemplateError($template->error()); -- cgit v1.2.3-24-g4f1b