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

(-)a/C4/Auth.pm (-19 / +2 lines)
Lines 333-347 sub get_template_and_user { Link Here
333
                auth_error  => $auth_error,
333
                auth_error  => $auth_error,
334
            );
334
            );
335
335
336
            print $in->{query}->header(
336
            C4::Output::output_html_with_http_headers( $in->{query}, $cookie, $template->output );
337
                {
338
                    type              => 'text/html',
339
                    charset           => 'utf-8',
340
                    cookie            => $cookie,
341
                    'X-Frame-Options' => 'SAMEORIGIN'
342
                }
343
                ),
344
                $template->output;
345
            safe_exit;
337
            safe_exit;
346
        }
338
        }
347
    }
339
    }
Lines 1619-1633 sub checkauth { Link Here
1619
        return ( undef, undef, undef, undef, $template );
1611
        return ( undef, undef, undef, undef, $template );
1620
    }
1612
    }
1621
1613
1622
    print $query->header(
1614
    C4::Output::output_html_with_http_headers( $query, $cookie, $template->output );
1623
        {
1624
            type              => 'text/html',
1625
            charset           => 'utf-8',
1626
            cookie            => $cookie,
1627
            'X-Frame-Options' => 'SAMEORIGIN',
1628
        }
1629
        ),
1630
        $template->output;
1631
    safe_exit;
1615
    safe_exit;
1632
}
1616
}
1633
1617
1634
- 

Return to bug 38363