@@ -, +, @@ verification email - Turn PatronSelfRegistrationVerifyByEmail on - Register a new account - Click on the link (see the message_queue table) --- opac/opac-registration-verify.pl | 1 + 1 file changed, 1 insertion(+) --- a/opac/opac-registration-verify.pl +++ a/opac/opac-registration-verify.pl @@ -64,6 +64,7 @@ if ( $patron_attrs->{categorycode} ||= C4::Context->preference('PatronSelfRegistrationDefaultCategory'); delete $patron_attrs->{timestamp}; delete $patron_attrs->{verification_token}; + delete $patron_attrs->{changed_fields}; my $patron = Koha::Patron->new( $patron_attrs )->store; Koha::Patron::Consent->new({ borrowernumber => $patron->borrowernumber, type => 'GDPR_PROCESSING', given_on => $consent_dt })->store if $consent_dt; --