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

(-)a/opac/opac-registration-verify.pl (-2 / +1 lines)
Lines 49-55 if ( $m->Verify() ) { Link Here
49
    $template->param(
49
    $template->param(
50
        OpacPasswordChange => C4::Context->preference('OpacPasswordChange') );
50
        OpacPasswordChange => C4::Context->preference('OpacPasswordChange') );
51
51
52
    my $borrower = $m->GetModifications();
52
    my $borrower = Koha::Borrower::Modifications->GetModifications({ verification_token => $token });
53
53
54
    my $password;
54
    my $password;
55
    ( $borrowernumber, $password ) = AddMember_Opac(%$borrower);
55
    ( $borrowernumber, $password ) = AddMember_Opac(%$borrower);
56
- 

Return to bug 7067