diff options
author | Byron Jones <glob@mozilla.com> | 2015-03-17 06:04:25 +0100 |
---|---|---|
committer | Byron Jones <glob@mozilla.com> | 2015-03-17 06:04:25 +0100 |
commit | 6da6c662340468ceff376ff0f996c48735e3beed (patch) | |
tree | 50099d8333dc6fa26467949e5b1fb81db4733fd0 /extensions | |
parent | 17f05cd306d116e22a289b4567df6ed4dab91745 (diff) | |
download | bugzilla-6da6c662340468ceff376ff0f996c48735e3beed.tar.gz bugzilla-6da6c662340468ceff376ff0f996c48735e3beed.tar.xz |
cannot use 'any' because it isn't available in the version of List::Util we have
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/BMO/Extension.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extensions/BMO/Extension.pm b/extensions/BMO/Extension.pm index ad93604e0..6bd8bacda 100644 --- a/extensions/BMO/Extension.pm +++ b/extensions/BMO/Extension.pm @@ -45,7 +45,7 @@ use Email::MIME::ContentType qw(parse_content_type); use Encode qw(find_encoding encode_utf8); use File::MimeInfo::Magic; use List::MoreUtils qw(natatime); -use List::Util qw(first any); +use List::Util qw(first); use Scalar::Util qw(blessed); use Sys::Syslog qw(:DEFAULT setlogsock); use Text::Balanced qw( extract_bracketed extract_multiple ); @@ -786,7 +786,7 @@ sub attachment_view { # must be our supported content-type return unless - any { $attachment->contenttype eq $autodetect_attach_urls{$_}->{content_type} } + grep { $attachment->contenttype eq $autodetect_attach_urls{$_}->{content_type} } keys %autodetect_attach_urls; # must still be a valid url |