diff options
Diffstat (limited to 'bug_form.pl')
-rw-r--r-- | bug_form.pl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bug_form.pl b/bug_form.pl index 262327f17..406d86c40 100644 --- a/bug_form.pl +++ b/bug_form.pl @@ -311,9 +311,13 @@ sub show_bug { $vars->{'bug'} = \%bug; $vars->{'user'} = \%user; + # Create the <link> elements for browsing bug lists + $vars->{'navigation_links'} = navigation_links(join(':',@bug_list)); + # Generate and return the UI (HTML page) from the appropriate template. $template->process("bug/edit.html.tmpl", $vars) || ThrowTemplateError($template->error()); } 1; + |