Lines 81-91
if( $csrf_err ) {
Link Here
|
81 |
$mail{'X-Abuse-Report'} = C4::Context->preference('KohaAdminEmailAddress'); |
81 |
$mail{'X-Abuse-Report'} = C4::Context->preference('KohaAdminEmailAddress'); |
82 |
|
82 |
|
83 |
# Since we are already logged in, no need to check credentials again |
83 |
# Since we are already logged in, no need to check credentials again |
84 |
# We only need to add OPACBaseURL |
84 |
# when loading a second template. |
85 |
my $template2 = C4::Templates::gettemplate( |
85 |
my $template2 = C4::Templates::gettemplate( |
86 |
'opac-sendbasket.tt', 'opac', $query, |
86 |
'opac-sendbasket.tt', 'opac', $query, |
87 |
); |
87 |
); |
88 |
$template2->param( OPACBaseURL => C4::Context->preference('OPACBaseURL') ); |
|
|
89 |
|
88 |
|
90 |
my @bibs = split( /\//, $bib_list ); |
89 |
my @bibs = split( /\//, $bib_list ); |
91 |
my @results; |
90 |
my @results; |
92 |
- |
|
|