summaryrefslogtreecommitdiffstats
path: root/Bugzilla/WebService/Util.pm
diff options
context:
space:
mode:
authorMatt Tyson <mtyson@redhat.com>2016-01-15 15:44:09 +0100
committerGervase Markham <gerv@mozilla.org>2016-01-15 15:44:09 +0100
commit38e12dd8a2c0b35391f20b60e9e3e8643c08f404 (patch)
tree17bc36ed5ff0a19741fc88378fbddc2578936b2b /Bugzilla/WebService/Util.pm
parent513b4458b42e7f20ee0e57995c339c2dd6c495e7 (diff)
downloadbugzilla-38e12dd8a2c0b35391f20b60e9e3e8643c08f404.tar.gz
bugzilla-38e12dd8a2c0b35391f20b60e9e3e8643c08f404.tar.xz
'Bug 1159057: change to create flags as part of bug creation process. r=gerv
Diffstat (limited to 'Bugzilla/WebService/Util.pm')
-rw-r--r--Bugzilla/WebService/Util.pm5
1 files changed, 2 insertions, 3 deletions
diff --git a/Bugzilla/WebService/Util.pm b/Bugzilla/WebService/Util.pm
index cbbc47921..052f7714d 100644
--- a/Bugzilla/WebService/Util.pm
+++ b/Bugzilla/WebService/Util.pm
@@ -37,11 +37,10 @@ our @EXPORT_OK = qw(
);
sub extract_flags {
- my ($flags, $bug, $attachment) = @_;
+ my ($flags, $flag_types, $current_flags) = @_;
my (@new_flags, @old_flags);
- my $flag_types = $attachment ? $attachment->flag_types : $bug->flag_types;
- my $current_flags = $attachment ? $attachment->flags : $bug->flags;
+ $current_flags //= [];
# Copy the user provided $flags as we may call extract_flags more than
# once when editing multiple bugs or attachments.