summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Flag.pm
diff options
context:
space:
mode:
authortravis%sedsystems.ca <>2005-03-16 07:08:12 +0100
committertravis%sedsystems.ca <>2005-03-16 07:08:12 +0100
commit235eaf8436a7cb2f693c3fb8bc5d042c652c1c5f (patch)
tree357e8cee9c59c0afe004d3e8934a257c22fd5305 /Bugzilla/Flag.pm
parent66172e4cc43bafb5a89f855260b2053e63af4463 (diff)
downloadbugzilla-235eaf8436a7cb2f693c3fb8bc5d042c652c1c5f.tar.gz
bugzilla-235eaf8436a7cb2f693c3fb8bc5d042c652c1c5f.tar.xz
Fix nits on bug 180652 - Frederic Buclin
Diffstat (limited to 'Bugzilla/Flag.pm')
-rw-r--r--Bugzilla/Flag.pm14
1 files changed, 4 insertions, 10 deletions
diff --git a/Bugzilla/Flag.pm b/Bugzilla/Flag.pm
index 6d1abfdd9..ea60eebe4 100644
--- a/Bugzilla/Flag.pm
+++ b/Bugzilla/Flag.pm
@@ -273,7 +273,7 @@ sub process {
# Take a snapshot of flags before any changes.
my @old_summaries = snapshot($bug_id, $attach_id);
- # Cancel old request flags if we are obsoleting an attachment.
+ # Cancel pending requests if we are obsoleting an attachment.
if ($attach_id && $data->{'isobsolete'}) {
CancelRequests($bug_id, $attach_id);
}
@@ -297,9 +297,7 @@ sub process {
AND i.type_id IS NULL",
undef, $bug_id);
- foreach my $flag_id (@$flag_ids) {
- clear($flag_id);
- }
+ foreach my $flag_id (@$flag_ids) { clear($flag_id) }
$flag_ids = $dbh->selectcol_arrayref(
"SELECT flags.id
@@ -312,9 +310,7 @@ sub process {
AND (bugs.component_id = e.component_id OR e.component_id IS NULL)",
undef, $bug_id);
- foreach my $flag_id (@$flag_ids) {
- clear($flag_id);
- }
+ foreach my $flag_id (@$flag_ids) { clear($flag_id) }
# Take a snapshot of flags after changes.
my @new_summaries = snapshot($bug_id, $attach_id);
@@ -681,9 +677,7 @@ sub CancelRequests {
# Take a snapshot of flags before any changes.
my @old_summaries = snapshot($bug_id, $attach_id) if ($timestamp);
- foreach my $flag (@$request_ids) {
- clear($flag);
- }
+ foreach my $flag (@$request_ids) { clear($flag) }
# If $timestamp is undefined, do not update the activity table
return unless ($timestamp);