diff options
author | gerv%gerv.net <> | 2002-05-09 04:02:58 +0200 |
---|---|---|
committer | gerv%gerv.net <> | 2002-05-09 04:02:58 +0200 |
commit | b23550bf70319f5c051acedadd35d8ce30a43363 (patch) | |
tree | c6d1376329e6098661d2203ecd7522e9e5dafb6b | |
parent | 2ac4f19bdf516d5d02e33ca5b42da93c0a011598 (diff) | |
download | bugzilla-b23550bf70319f5c051acedadd35d8ce30a43363.tar.gz bugzilla-b23550bf70319f5c051acedadd35d8ce30a43363.tar.xz |
Bug 143066 - footer shows as logged out on show_bug.cgi. Patch by gerv; 2xr=ddk
-rw-r--r-- | bug_form.pl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/bug_form.pl b/bug_form.pl index b074cdb15..61bba183a 100644 --- a/bug_form.pl +++ b/bug_form.pl @@ -72,7 +72,7 @@ sub show_bug { exit; } - my %user; + my %user = %{$vars->{'user'}}; my %bug; # Populate the bug hash with the info we get directly from the DB. @@ -309,7 +309,6 @@ sub show_bug { # Add the bug and user hashes to the variables $vars->{'bug'} = \%bug; - $vars->{'user'} = \%user; # Generate and return the UI (HTML page) from the appropriate template. $template->process("bug/edit.html.tmpl", $vars) |