From 8c96e74e3dbb34cdc97282e91f019dfed8df1405 Mon Sep 17 00:00:00 2001 From: "kiko%async.com.br" <> Date: Thu, 22 Jul 2004 00:53:34 +0000 Subject: Fix for bug 252378: Remove $COOKIE from attachment.cgi. r=bugreport, a=justdave. --- attachment.cgi | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'attachment.cgi') diff --git a/attachment.cgi b/attachment.cgi index 06a04291e..ca4380902 100755 --- a/attachment.cgi +++ b/attachment.cgi @@ -870,7 +870,7 @@ sub insert $comment = Text::Wrap::wrap('', '', $comment); AppendComment($::FORM{'bugid'}, - $::COOKIE{"Bugzilla_login"}, + Bugzilla->user->login, $comment, $isprivate); @@ -934,7 +934,7 @@ sub insert } # Define the variables and functions that will be passed to the UI template. - $vars->{'mailrecipients'} = { 'changer' => $::COOKIE{'Bugzilla_login'}, + $vars->{'mailrecipients'} = { 'changer' => Bugzilla->user->login, 'owner' => $owner }; my $bugid = $::FORM{'bugid'}; detaint_natural($bugid); # don't bother with error condition, we know it'll work @@ -1156,7 +1156,7 @@ sub update } # Define the variables and functions that will be passed to the UI template. - $vars->{'mailrecipients'} = { 'changer' => $::COOKIE{'Bugzilla_login'} }; + $vars->{'mailrecipients'} = { 'changer' => Bugzilla->user->login }; $vars->{'attachid'} = $::FORM{'id'}; $vars->{'bugid'} = $bugid; -- cgit v1.2.3-24-g4f1b