From: gerv%gerv.net <> Date: Thu, 9 May 2002 02:02:58 +0000 (+0000) Subject: Bug 143066 - footer shows as logged out on show_bug.cgi. Patch by gerv; 2xr=ddk X-Git-Tag: bugzilla-2.16rc1~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b23550bf70319f5c051acedadd35d8ce30a43363;p=thirdparty%2Fbugzilla.git Bug 143066 - footer shows as logged out on show_bug.cgi. Patch by gerv; 2xr=ddk --- diff --git a/bug_form.pl b/bug_form.pl index b074cdb158..61bba183a6 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)