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

(-)a/C4/Auth.pm (-1 / +9 lines)
Lines 259-264 sub get_template_and_user { Link Here
259
                -sameSite => 'Lax',
259
                -sameSite => 'Lax',
260
            ));
260
            ));
261
261
262
            #NOTE: This JWT should only be used by the self-check controllers
263
            $cookie = $cookie_mgr->replace_in_list( $cookie, $in->{query}->cookie(
264
                -name     => 'JWT',
265
                -value    => '',
266
                -HttpOnly => 1,
267
                -secure => ( C4::Context->https_enabled() ? 1 : 0 ),
268
                -sameSite => 'Lax',
269
            ));
270
262
            my $auth_error = $in->{query}->param('auth_error');
271
            my $auth_error = $in->{query}->param('auth_error');
263
272
264
            $template->param(
273
            $template->param(
265
- 

Return to bug 33881