Lines 796-810
sub checkauth {
Link Here
|
796 |
|
796 |
|
797 |
if ( $type eq 'opac' && !C4::Context->preference("OpacPublic") ) { |
797 |
if ( $type eq 'opac' && !C4::Context->preference("OpacPublic") ) { |
798 |
my @allowed_scripts_for_private_opac = qw( |
798 |
my @allowed_scripts_for_private_opac = qw( |
799 |
opac-memberentry.tt |
799 |
opac-memberentry.tt |
800 |
opac-registration-email-sent.tt |
800 |
opac-registration-email-sent.tt |
801 |
opac-registration-confirmation.tt |
801 |
opac-registration-confirmation.tt |
802 |
opac-memberentry-update-submitted.tt |
802 |
opac-memberentry-update-submitted.tt |
803 |
opac-password-recovery.tt |
803 |
opac-password-recovery.tt |
804 |
opac-reset-password.tt |
804 |
opac-reset-password.tt |
|
|
805 |
ilsdi.tt |
805 |
); |
806 |
); |
806 |
$authnotrequired = 0 unless grep { $_ eq $template_name } |
807 |
$authnotrequired = 0 unless grep { $_ eq $template_name } |
807 |
@allowed_scripts_for_private_opac; |
808 |
@allowed_scripts_for_private_opac; |
808 |
} |
809 |
} |
809 |
|
810 |
|
810 |
my $timeout = _timeout_syspref(); |
811 |
my $timeout = _timeout_syspref(); |
811 |
- |
|
|