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

(-)a/C4/Auth.pm (-2 / +2 lines)
Lines 807-812 sub checkauth { Link Here
807
    my $type            = shift;
807
    my $type            = shift;
808
    my $emailaddress    = shift;
808
    my $emailaddress    = shift;
809
    my $template_name   = shift;
809
    my $template_name   = shift;
810
    my $params          = shift; # 29915
810
    $type = 'opac' unless $type;
811
    $type = 'opac' unless $type;
811
812
812
    unless ( C4::Context->preference("OpacPublic") ) {
813
    unless ( C4::Context->preference("OpacPublic") ) {
Lines 1394-1400 sub checkauth { Link Here
1394
            'X-Frame-Options' => 'SAMEORIGIN'
1395
            'X-Frame-Options' => 'SAMEORIGIN'
1395
        }
1396
        }
1396
      ),
1397
      ),
1397
      $template->output;
1398
      $template->output unless $params->{skip_auth_template};
1398
    safe_exit;
1399
    safe_exit;
1399
}
1400
}
1400
1401
1401
- 

Return to bug 29915