diff options
author | lpsolit%gmail.com <> | 2005-08-16 01:48:13 +0000 |
---|---|---|
committer | lpsolit%gmail.com <> | 2005-08-16 01:48:13 +0000 |
commit | 74dd48c21d8b75ec8de225c4a653641a3460bf4f (patch) | |
tree | 5437c4aea1456d36eb1225de66e2e953e375b3cb /attachment.cgi | |
parent | 044848e67b4134b9429f880774c9c6cf577226cc (diff) | |
download | bugs-74dd48c21d8b75ec8de225c4a653641a3460bf4f.tar bugs-74dd48c21d8b75ec8de225c4a653641a3460bf4f.tar.gz bugs-74dd48c21d8b75ec8de225c4a653641a3460bf4f.tar.bz2 bugs-74dd48c21d8b75ec8de225c4a653641a3460bf4f.tar.xz bugs-74dd48c21d8b75ec8de225c4a653641a3460bf4f.zip |
Bug 304642: Bugzilla::Flag::GetTarget() should be called internally by Bugzilla::Flag::process() - Patch by Frédéric Buclin <LpSolit@gmail.com> r/a=myk
Diffstat (limited to 'attachment.cgi')
-rwxr-xr-x | attachment.cgi | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/attachment.cgi b/attachment.cgi index ea04e2c19..fba504690 100755 --- a/attachment.cgi +++ b/attachment.cgi @@ -1054,8 +1054,7 @@ sub insert } # Create flags. - my $target = Bugzilla::Flag::GetTarget(undef, $attachid); - Bugzilla::Flag::process($target, $timestamp, $cgi); + Bugzilla::Flag::process($bugid, $attachid, $timestamp, $cgi); # Define the variables and functions that will be passed to the UI template. $vars->{'mailrecipients'} = { 'changer' => Bugzilla->user->login, @@ -1203,8 +1202,7 @@ sub update # to attachments so that we can delete pending requests if the user # is obsoleting this attachment without deleting any requests # the user submits at the same time. - my $target = Bugzilla::Flag::GetTarget(undef, $attach_id); - Bugzilla::Flag::process($target, $timestamp, $cgi); + Bugzilla::Flag::process($bugid, $attach_id, $timestamp, $cgi); # Update the attachment record in the database. SendSQL("UPDATE attachments |