Browse Source

Bug 21874: (QA follow-up) Fix intranet sendshelf

Move encode line below regex line.

Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>

Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
18.11.x
Marcel de Rooy 5 years ago
committed by Nick Clemens
parent
commit
c1ec452e5c
  1. 3
      virtualshelves/sendshelf.pl

3
virtualshelves/sendshelf.pl

@ -113,10 +113,11 @@ if ($email) {
# Analysing information and getting mail properties
if ( $template_res =~ /<SUBJECT>(.*)<END_SUBJECT>/s ) {
$mail{'subject'} = encode('MIME-Header', $1);
$mail{subject} = $1;
$mail{subject} =~ s|\n?(.*)\n?|$1|;
}
else { $mail{'subject'} = "no subject"; }
$mail{subject} = encode( 'MIME-Header', $mail{subject} );
my $email_header = "";
if ( $template_res =~ /<HEADER>(.*)<END_HEADER>/s ) {

Loading…
Cancel
Save