diff options
author | 2002-05-09 02:02:58 +0000 | |
---|---|---|
committer | 2002-05-09 02:02:58 +0000 | |
commit | b23550bf70319f5c051acedadd35d8ce30a43363 (patch) | |
tree | c6d1376329e6098661d2203ecd7522e9e5dafb6b /bug_form.pl | |
parent | Bug 143045 - Bug groups text is unclear. Patch by jmrobins@tgix.com; 2xr=gerv. (diff) | |
download | bugzilla-b23550bf70319f5c051acedadd35d8ce30a43363.tar.gz bugzilla-b23550bf70319f5c051acedadd35d8ce30a43363.tar.bz2 bugzilla-b23550bf70319f5c051acedadd35d8ce30a43363.zip |
Bug 143066 - footer shows as logged out on show_bug.cgi. Patch by gerv; 2xr=ddk
Diffstat (limited to 'bug_form.pl')
-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) |