diff options
author | 2019-01-31 20:50:06 -0500 | |
---|---|---|
committer | 2019-01-31 21:02:46 -0500 | |
commit | f91e240aac65936bc9dee0f926cd6f1021f48fe0 (patch) | |
tree | 596aa9893d4526e646b9a64fd6c65706c8dd3340 /email_in.pl | |
parent | add perl-fmt script (diff) | |
download | bugzilla-f91e240aac65936bc9dee0f926cd6f1021f48fe0.tar.gz bugzilla-f91e240aac65936bc9dee0f926cd6f1021f48fe0.tar.bz2 bugzilla-f91e240aac65936bc9dee0f926cd6f1021f48fe0.zip |
no bug - perltidy again, using the latest release
blame jeff
Diffstat (limited to 'email_in.pl')
-rwxr-xr-x | email_in.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/email_in.pl b/email_in.pl index babe868ed..a03935830 100755 --- a/email_in.pl +++ b/email_in.pl @@ -250,7 +250,7 @@ sub process_bug { # Make it possible to remove CCs. if ($fields{'removecc'}) { - $fields{'cc'} = [split(',', $fields{'removecc'})]; + $fields{'cc'} = [split(',', $fields{'removecc'})]; $fields{'removecc'} = 1; } @@ -374,7 +374,7 @@ sub get_text_alternative { my @parts = $email->parts; my $body; foreach my $part (@parts) { - my $ct = $part->content_type || 'text/plain'; + my $ct = $part->content_type || 'text/plain'; my $charset = 'iso-8859-1'; # The charset may be quoted. |