diff options
Diffstat (limited to 'colchange.cgi')
-rwxr-xr-x | colchange.cgi | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/colchange.cgi b/colchange.cgi index f2ac55aa9..ea21042e2 100755 --- a/colchange.cgi +++ b/colchange.cgi @@ -119,7 +119,6 @@ $vars->{buffer} = $::buffer; # Generate and return the UI (HTML page) from the appropriate template. print "Content-type: text/html\n\n"; -$template->process("buglist/colchange.tmpl", $vars) - || DisplayError("Template process failed: " . $template->error()) - && exit; +$template->process("list/change-columns.html.tmpl", $vars) + || ThrowTemplateError($template->error()); |