summaryrefslogtreecommitdiffstats
path: root/bug_form.pl
diff options
context:
space:
mode:
authorgerv%gerv.net <>2002-05-09 04:02:58 +0200
committergerv%gerv.net <>2002-05-09 04:02:58 +0200
commitb23550bf70319f5c051acedadd35d8ce30a43363 (patch)
treec6d1376329e6098661d2203ecd7522e9e5dafb6b /bug_form.pl
parent2ac4f19bdf516d5d02e33ca5b42da93c0a011598 (diff)
downloadbugzilla-b23550bf70319f5c051acedadd35d8ce30a43363.tar.gz
bugzilla-b23550bf70319f5c051acedadd35d8ce30a43363.tar.xz
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.pl3
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)