aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--extensions/AttachmentFilter/Extension.pm7
1 files changed, 5 insertions, 2 deletions
diff --git a/extensions/AttachmentFilter/Extension.pm b/extensions/AttachmentFilter/Extension.pm
index e0726b9c9..35e22c99c 100644
--- a/extensions/AttachmentFilter/Extension.pm
+++ b/extensions/AttachmentFilter/Extension.pm
@@ -12,14 +12,17 @@ use strict;
use base qw(Bugzilla::Extension);
use Bugzilla::Error;
-our $VERSION = '0.01';
+our $VERSION = '0.02';
################################################################################
# This extension is filtering attachments. Currently its is filtering html
# attachments.
################################################################################
sub attachment_process_data {
my ($self, $args) = @_;
- return unless ( ($args->{attributes}->{mimetype} eq 'text/html') or ($args->{attributes}->{filename} =~ /\.htm\z/) or ($args->{attributes}->{filename} =~ /\.html\z/) );
+ return unless ($args->{attributes}->{mimetype} eq 'text/html') or
+ ($args->{attributes}->{filename} =~ /\.htm\z/) or
+ ($args->{attributes}->{filename} =~ /\.html\z/) or
+ ($args->{attributes}->{filename} =~ /\.php\z/);
${$args->{data}} = '';
$args->{attributes}->{filename} = '';