From: kiko%async.com.br <> Date: Thu, 22 Jul 2004 00:53:34 +0000 (+0000) Subject: Fix for bug 252378: Remove $COOKIE from attachment.cgi. r=bugreport, X-Git-Tag: bugzilla-2.19.1~138 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8c96e74e3dbb34cdc97282e91f019dfed8df1405;p=thirdparty%2Fbugzilla.git Fix for bug 252378: Remove $COOKIE from attachment.cgi. r=bugreport, a=justdave. --- diff --git a/attachment.cgi b/attachment.cgi index 06a04291e7..ca43809023 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;