summaryrefslogtreecommitdiffstats
path: root/process_bug.cgi
diff options
context:
space:
mode:
Diffstat (limited to 'process_bug.cgi')
-rwxr-xr-xprocess_bug.cgi8
1 files changed, 8 insertions, 0 deletions
diff --git a/process_bug.cgi b/process_bug.cgi
index 218712511..7a6e2bbc5 100755
--- a/process_bug.cgi
+++ b/process_bug.cgi
@@ -1767,6 +1767,14 @@ if ($next_bug) {
# next.html.tmpl includes edit.html.tmpl, and therefore we
# need $bug defined in $vars.
$vars->{'bug'} = $bug;
+
+ # And we need to determine if Patch Viewer is installed, for
+ # Diff link (NB: Duplicate code with show_bug.cgi.)
+ eval {
+ require PatchReader;
+ $vars->{'patchviewerinstalled'} = 1;
+ };
+
$template->process("bug/process/next.html.tmpl", $vars)
|| ThrowTemplateError($template->error());