From ff65145b5d01d679d8bde7253ead9bed3c133045 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Mon, 5 Aug 2019 08:40:12 -0500 Subject: [PATCH] Bug 23428: (bug 23151 follow-up) Fix self registration with a verification email DBIx::Class::Row::store_column(): No such column 'changed_fields' on Koha::Schema::Result::Borrower at /home/vagrant/kohaclone/Koha/Object.pm line 75 Test plan: - Turn PatronSelfRegistrationVerifyByEmail on - Register a new account - Click on the link (see the message_queue table) => Without this patch you get the error => With this patch you will see the login form --- opac/opac-registration-verify.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/opac/opac-registration-verify.pl b/opac/opac-registration-verify.pl index 91e31c0d8e..d40631f74b 100755 --- a/opac/opac-registration-verify.pl +++ b/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; -- 2.11.0