summaryrefslogtreecommitdiffstats
path: root/show_bug.cgi
diff options
context:
space:
mode:
authorjocuri%softhome.net <>2004-04-11 00:08:21 +0200
committerjocuri%softhome.net <>2004-04-11 00:08:21 +0200
commitb9c3dbad825ee0936d1687aff9fdf122d88d6dac (patch)
treee81f9a900167b74ce8e5dfd6c79b981e337f4f69 /show_bug.cgi
parent2cb580b5c21df6924b9fb7b16331421267462b6e (diff)
downloadbugzilla-b9c3dbad825ee0936d1687aff9fdf122d88d6dac.tar.gz
bugzilla-b9c3dbad825ee0936d1687aff9fdf122d88d6dac.tar.xz
Patch for bug 87770: make attachment.cgi work with no parameters; patch by GavinS <bugzilla@chimpychompy.org>; r=kiko; a=myk.
Diffstat (limited to 'show_bug.cgi')
-rwxr-xr-xshow_bug.cgi2
1 files changed, 1 insertions, 1 deletions
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());