summaryrefslogtreecommitdiffstats
path: root/Bugzilla.pm
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2013-12-21 17:42:14 +0100
committerFrédéric Buclin <LpSolit@gmail.com>2013-12-21 17:42:14 +0100
commit61858962b06866a330960bd161591b000e26ae63 (patch)
tree52e8225f3477795496db0e70baeb9183a2a054d3 /Bugzilla.pm
parent9e4f74655ed3ddad46019932d4b0c036af8367da (diff)
downloadbugzilla-61858962b06866a330960bd161591b000e26ae63.tar.gz
bugzilla-61858962b06866a330960bd161591b000e26ae63.tar.xz
Bug 748095: Bugzilla crashes when the shutdownhtml parameter is set and using a non-cookie based authentication method
r=dkl a=justdave
Diffstat (limited to 'Bugzilla.pm')
-rw-r--r--Bugzilla.pm4
1 files changed, 1 insertions, 3 deletions
diff --git a/Bugzilla.pm b/Bugzilla.pm
index 99fcbed46..5344c8bc6 100644
--- a/Bugzilla.pm
+++ b/Bugzilla.pm
@@ -165,10 +165,8 @@ sub init_page {
print Bugzilla->cgi->header(-status => 503,
-retry_after => SHUTDOWNHTML_RETRY_AFTER);
}
- my $t_output;
- $template->process("global/message.$extension.tmpl", $vars, \$t_output)
+ $template->process("global/message.$extension.tmpl", $vars)
|| ThrowTemplateError($template->error);
- say $t_output;
exit;
}
}