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

(-)a/C4/Auth.pm (-2 / +1 lines)
Lines 824-830 sub checkauth { Link Here
824
    my $template_name   = shift;
824
    my $template_name   = shift;
825
    $type = 'opac' unless $type;
825
    $type = 'opac' unless $type;
826
826
827
    unless ( C4::Context->preference("OpacPublic") ) {
827
    if ( $type eq 'opac' && !C4::Context->preference("OpacPublic") ) {
828
        my @allowed_scripts_for_private_opac = qw(
828
        my @allowed_scripts_for_private_opac = qw(
829
          opac-memberentry.tt
829
          opac-memberentry.tt
830
          opac-registration-email-sent.tt
830
          opac-registration-email-sent.tt
831
- 

Return to bug 27342