From d339868acdcb7ac633fb15744bf5804292baed22 Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Fri, 18 Oct 2013 07:25:29 +0000 Subject: [PATCH] Bug 8368: (follow-up) restore use of quoted printable for message body This is necessary to prevent the equals sign that is part of the link back to the OPAC from being mangled, thereby breaking the link. Signed-off-by: Galen Charlton Signed-off-by: Joy Nelson http://bugs.koha-community.org/show_bug.cgi?id=10538 --- opac/opac-sendshelf.pl | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/opac/opac-sendshelf.pl b/opac/opac-sendshelf.pl index cc70765..80b54e2 100755 --- a/opac/opac-sendshelf.pl +++ b/opac/opac-sendshelf.pl @@ -134,6 +134,7 @@ if ( $email ) { : "list.txt"; my ($body) = $template_res =~ /\n(.*)\n?/s; + $body = encode_qp($body); my $boundary = "====" . time() . "===="; -- 1.7.2.5