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 /chart.cgi | |
parent | Bug 585802: Change the cc/user autocomplete (and backend) usermatching to ign... (diff) | |
download | bugzilla-5ba4b1aff6564126b3d0b1e7741b992d178d8f66.tar.gz bugzilla-5ba4b1aff6564126b3d0b1e7741b992d178d8f66.tar.bz2 bugzilla-5ba4b1aff6564126b3d0b1e7741b992d178d8f66.zip |
Bug 607966: Use of qw(...) as parentheses is deprecated since Perl 5.13.5
r=gerv a=LpSolit
Diffstat (limited to 'chart.cgi')
-rwxr-xr-x | chart.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -200,7 +200,7 @@ elsif ($action eq "delete") { $series->remove_from_db(); # Remove (sub)categories which no longer have any series. - foreach my $cat qw(category subcategory) { + foreach my $cat (qw(category subcategory)) { my $is_used = $dbh->selectrow_array("SELECT COUNT(*) FROM series WHERE $cat = ?", undef, $series->{"${cat}_id"}); if (!$is_used) { |