Bug 607966: Use of qw(...) as parentheses is deprecated since Perl 5.13.5

r=gerv a=LpSolit


git-svn-id: svn://10.0.0.236/branches/BUGZILLA-4_0-BRANCH@261490 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
mkanat%bugzilla.org
2010-10-28 15:35:02 +00:00
parent 8f355c19e8
commit 32a1634518
6 changed files with 9 additions and 11 deletions

View File

@@ -927,7 +927,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);
}