diff options
Diffstat (limited to 'showdependencygraph.cgi')
-rwxr-xr-x | showdependencygraph.cgi | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/showdependencygraph.cgi b/showdependencygraph.cgi index f30e4d24f..21725b8f9 100755 --- a/showdependencygraph.cgi +++ b/showdependencygraph.cgi @@ -190,6 +190,5 @@ $vars->{'showsummary'} = $::FORM{'showsummary'}; # Generate and return the UI (HTML page) from the appropriate template. print "Content-type: text/html\n\n"; -$template->process("show/dependency-graph.html.tmpl", $vars) - || DisplayError("Template process failed: " . $template->error()) - && exit; +$template->process("bug/dependency-graph.html.tmpl", $vars) + || ThrowTemplateError($template->error()); |