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

(-)a/opac/opac-registration-verify.pl (-3 / +2 lines)
Lines 70-76 if ( $rego_found Link Here
70
            template_name   => "opac-registration-confirmation.tt",
70
            template_name   => "opac-registration-confirmation.tt",
71
            type            => "opac",
71
            type            => "opac",
72
            query           => $cgi,
72
            query           => $cgi,
73
            authnotrequired => C4::Context->preference("OpacPublic") ? 1 : 0,
73
            authnotrequired => 1,
74
        }
74
        }
75
    );
75
    );
76
    $template->param( "token" => $token );
76
    $template->param( "token" => $token );
Lines 113-119 if ( $rego_found Link Here
113
                template_name   => "opac-registration-confirmation.tt",
113
                template_name   => "opac-registration-confirmation.tt",
114
                type            => "opac",
114
                type            => "opac",
115
                query           => $cgi,
115
                query           => $cgi,
116
                authnotrequired => C4::Context->preference("OpacPublic") ? 1 : 0,
116
                authnotrequired => 1,
117
            }
117
            }
118
        );
118
        );
119
        $template->param( "confirmed" => 1 );
119
        $template->param( "confirmed" => 1 );
120
- 

Return to bug 37692