From 4cda914acf23e285ada2770a83dddbbd8aa7ddc7 Mon Sep 17 00:00:00 2001 From: Robin Sheat Date: Fri, 29 Aug 2014 16:19:22 +1200 Subject: [PATCH] Bug 12849 - fix URLs in sent lists This brings back the http(s) to the URLs in sent lists. Test plan: * make a list * send it to yourself * see that the URLs aren't clickable * apply the patch * repeat, except now the URLs are better Signed-off-by: Nick Clemens Signed-off-by: Katrin Fischer By removing this bit of code, the code in Auth.pm is used instead. The code there is not perfect, but the solution works and both list and cart use the same code. Passes tests and QA script. Signed-off-by: Tomas Cohen Arazi Signed-off-by: Galen Charlton (cherry picked from commit 6073d8943c74dcb2319fbd8415f819521d5b1092) Signed-off-by: Fridolin Somers --- opac/opac-sendshelf.pl | 4 ---- 1 file changed, 4 deletions(-) diff --git a/opac/opac-sendshelf.pl b/opac/opac-sendshelf.pl index 3f9b719987..470282a2d9 100755 --- a/opac/opac-sendshelf.pl +++ b/opac/opac-sendshelf.pl @@ -107,10 +107,6 @@ if ( $email ) { my $user = GetMember(borrowernumber => $borrowernumber); - if (C4::Context->preference('OPACBaseURL')){ - $template2->param( OPACBaseURL => C4::Context->preference('OPACBaseURL') ); - } - $template2->param( BIBLIO_RESULTS => \@results, email_sender => $email_from, -- 2.39.5