diff options
author | gerv%gerv.net <> | 2002-04-24 14:24:43 +0000 |
---|---|---|
committer | gerv%gerv.net <> | 2002-04-24 14:24:43 +0000 |
commit | 05d101e58b400b1a52adcc86515b5442b85cd2f5 (patch) | |
tree | ded36788873d147ce2a62bd76239e0e99974c621 /relogin.cgi | |
parent | Bug 138582 - convert all INCLUDEs to PROCESS. Patch by gerv, r=bbaetz, afranke. (diff) | |
download | bugzilla-05d101e58b400b1a52adcc86515b5442b85cd2f5.tar.gz bugzilla-05d101e58b400b1a52adcc86515b5442b85cd2f5.tar.bz2 bugzilla-05d101e58b400b1a52adcc86515b5442b85cd2f5.zip |
Bug 138588 - change to use new template structure. Patch by gerv, r=myk, afranke.
Diffstat (limited to 'relogin.cgi')
-rwxr-xr-x | relogin.cgi | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/relogin.cgi b/relogin.cgi index 03670158d..d07de9ef6 100755 --- a/relogin.cgi +++ b/relogin.cgi @@ -69,8 +69,7 @@ delete $::COOKIE{"Bugzilla_login"}; print "Content-Type: text/html\n\n"; $template->process("global/message.html.tmpl", $vars) - || DisplayError("Template process failed: " . $template->error()) - && exit; + || ThrowTemplateError($template->error()); exit; |