Bugzilla – Attachment 133533 Details for
Bug 28786
Two-factor authentication for staff client - TOTP
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 28786: Don't set auth_method to NULL in ->anonymize
Bug-28786-Dont-set-authmethod-to-NULL-in--anonymiz.patch (text/plain), 1.36 KB, created by
Mason James
on 2022-04-21 09:50:11 UTC
(
hide
)
Description:
Bug 28786: Don't set auth_method to NULL in ->anonymize
Filename:
MIME Type:
Creator:
Mason James
Created:
2022-04-21 09:50:11 UTC
Size:
1.36 KB
patch
obsolete
>From b7c23196ec433d713e98dc397aeeb08568280256 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Thu, 21 Apr 2022 11:41:55 +0200 >Subject: [PATCH] Bug 28786: Don't set auth_method to NULL in ->anonymize >Content-Type: text/plain; charset="utf-8" > >DBI Exception: DBD::mysql::st execute failed: Column 'auth_method' cannot be null > >caught by t/db_dependent/Koha/Patrons.t > >Signed-off-by: Mason James <mtj@kohaaloha.com> >--- > Koha/Patron.pm | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/Koha/Patron.pm b/Koha/Patron.pm >index 3a26db0d6a..c424c30174 100644 >--- a/Koha/Patron.pm >+++ b/Koha/Patron.pm >@@ -1769,7 +1769,7 @@ sub anonymize { > split /\s*\|\s*/, C4::Context->preference('BorrowerMandatoryField') }; > $mandatory->{userid} = 1; # needed since sub store does not clear field > my @columns = $self->_result->result_source->columns; >- @columns = grep { !/borrowernumber|branchcode|categorycode|^date|password|flags|updated_on|lastseen|lang|login_attempts|anonymized/ } @columns; >+ @columns = grep { !/borrowernumber|branchcode|categorycode|^date|password|flags|updated_on|lastseen|lang|login_attempts|anonymized|auth_method/ } @columns; > push @columns, 'dateofbirth'; # add this date back in > foreach my $col (@columns) { > $self->_anonymize_column($col, $mandatory->{lc $col} ); >-- >2.20.1
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 28786
:
123375
|
123376
|
123377
|
123378
|
123379
|
123380
|
123381
|
123397
|
123398
|
123399
|
123400
|
123401
|
123402
|
123403
|
124569
|
124770
|
124771
|
124844
|
124845
|
124846
|
124847
|
128841
|
128842
|
129383
|
129384
|
129474
|
129521
|
129557
|
129558
|
129559
|
129560
|
129561
|
129562
|
129563
|
129564
|
129565
|
129566
|
129567
|
129568
|
129569
|
129654
|
129655
|
129656
|
129657
|
129658
|
129659
|
129660
|
129661
|
129662
|
129665
|
131940
|
131941
|
131942
|
131943
|
131944
|
131945
|
131946
|
131947
|
131948
|
131949
|
131950
|
131951
|
131952
|
131953
|
131954
|
131955
|
131956
|
131957
|
131958
|
132142
|
132143
|
132144
|
132145
|
132146
|
132147
|
132148
|
132149
|
132150
|
132153
|
132154
|
132155
|
132156
|
132157
|
133222
|
133516
|
133522
|
133531
| 133533 |
133541
|
133548
|
133643
|
133686