diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2010-10-28 17:20:46 +0200 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2010-10-28 17:20:46 +0200 |
commit | 5ba4b1aff6564126b3d0b1e7741b992d178d8f66 (patch) | |
tree | d61d32e7a433608eda5d62871eccafe23e931d43 /Bugzilla/WebService | |
parent | a6041007c544e7b2a8ae703c8e45e635e2ace991 (diff) | |
download | bugs-5ba4b1aff6564126b3d0b1e7741b992d178d8f66.tar bugs-5ba4b1aff6564126b3d0b1e7741b992d178d8f66.tar.gz bugs-5ba4b1aff6564126b3d0b1e7741b992d178d8f66.tar.bz2 bugs-5ba4b1aff6564126b3d0b1e7741b992d178d8f66.tar.xz bugs-5ba4b1aff6564126b3d0b1e7741b992d178d8f66.zip |
Bug 607966: Use of qw(...) as parentheses is deprecated since Perl 5.13.5
r=gerv a=LpSolit
Diffstat (limited to 'Bugzilla/WebService')
-rw-r--r-- | Bugzilla/WebService/Bug.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/WebService/Bug.pm b/Bugzilla/WebService/Bug.pm index a36eed957..afd235404 100644 --- a/Bugzilla/WebService/Bug.pm +++ b/Bugzilla/WebService/Bug.pm @@ -931,7 +931,7 @@ sub _attachment_to_hash { # creator/attacher require an extra lookup, so we only send them if # the filter wants them. - foreach my $field qw(creator attacher) { + foreach my $field (qw(creator attacher)) { if (filter_wants $filters, $field) { $item->{$field} = $self->type('string', $attach->attacher->login); } |