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 1610-1624 sub checkauth { Link Here
1610
        return ( undef, undef, undef, undef, $template );
1602
        return ( undef, undef, undef, undef, $template );
1611
    }
1603
    }
1612
1604
1613
    print $query->header(
1605
    C4::Output::output_html_with_http_headers( $query, $cookie, $template->output );
1614
        {
1615
            type              => 'text/html',
1616
            charset           => 'utf-8',
1617
            cookie            => $cookie,
1618
            'X-Frame-Options' => 'SAMEORIGIN',
1619
        }
1620
        ),
1621
        $template->output;
1622
    safe_exit;
1606
    safe_exit;
1623
}
1607
}
1624
1608
1625
- 

Return to bug 38363