View | Details | Raw Unified | Return to bug 30532
Collapse All | Expand All

(-)a/opac/opac-messaging.pl (-1 / +1 lines)
Lines 83-89 if ( C4::Context->preference("SMSSendDriver") eq 'Email' ) { Link Here
83
    $template->param( sms_providers => $providers, sms_provider_id => $patron->sms_provider_id );
83
    $template->param( sms_providers => $providers, sms_provider_id => $patron->sms_provider_id );
84
}
84
}
85
85
86
my $new_session_id = $cookie->value;
86
my $new_session_id = $query->cookie('CGISESSID');
87
$template->param(
87
$template->param(
88
    csrf_token => Koha::Token->new->generate_csrf({
88
    csrf_token => Koha::Token->new->generate_csrf({
89
            session_id => $new_session_id,
89
            session_id => $new_session_id,
(-)a/opac/opac-sendbasket.pl (-1 / +1 lines)
Lines 180-186 END_OF_BODY Link Here
180
    output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 };
180
    output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 };
181
}
181
}
182
else {
182
else {
183
    my $new_session_id = $cookie->value;
183
    my $new_session_id = $query->cookie('CGISESSID');
184
    $template->param(
184
    $template->param(
185
        bib_list       => $bib_list,
185
        bib_list       => $bib_list,
186
        url            => "/cgi-bin/koha/opac-sendbasket.pl",
186
        url            => "/cgi-bin/koha/opac-sendbasket.pl",
(-)a/reports/guided_reports.pl (-2 / +2 lines)
Lines 77-83 my ( $template, $borrowernumber, $cookie ) = get_template_and_user( Link Here
77
        flagsrequired   => { reports => $flagsrequired },
77
        flagsrequired   => { reports => $flagsrequired },
78
    }
78
    }
79
);
79
);
80
my $session = $cookie ? get_session($cookie->value) : undef;
80
my $session_id = $input->cookie('CGISESSID');
81
my $session = $session_id ? get_session($session_id) : undef;
81
82
82
my $filter;
83
my $filter;
83
if ( $input->param("filter_set") or $input->param('clear_filters') ) {
84
if ( $input->param("filter_set") or $input->param('clear_filters') ) {
84
- 

Return to bug 30532