From 5792e4168a63ab97584001973c333ced401c82b7 Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Mon, 3 Mar 2025 13:09:12 +0000 Subject: [PATCH] Bug 39226: Add borrowernumber 0 when creating patron modification Content-Type: text/plain; charset=utf-8 Test plan: Test with and without this patch. Verify that you see no warn with Missing value for primary key column anymore in plack-opac-error. Enable self registration. Register a new patron. --- opac/opac-memberentry.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/opac/opac-memberentry.pl b/opac/opac-memberentry.pl index 34ee2762f5..6cf681d700 100755 --- a/opac/opac-memberentry.pl +++ b/opac/opac-memberentry.pl @@ -197,6 +197,7 @@ if ( $op eq 'cud-create' ) { $borrower{verification_token} = $verification_token; $borrower{extended_attributes} = to_json($attributes); + $borrower{borrowernumber} = 0; # prevent warn Missing value for PK column Koha::Patron::Modification->new( \%borrower )->store(); #Send verification email -- 2.39.5