From 98b344407a3ce4cc299f3b2b1a467fb1f4fd41b0 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 Signed-off-by: Michal Denar Signed-off-by: Katrin Fischer --- 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