Bugzilla – Attachment 148469 Details for
Bug 33284
checkout_renewals table retains checkout history in violation of patron privacy
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 33284: Set renewer_id appropriately for anonymize settings
Bug-33284-Set-renewerid-appropriately-for-anonymiz.patch (text/plain), 995 bytes, created by
Martin Renvoize (ashimema)
on 2023-03-21 14:09:46 UTC
(
hide
)
Description:
Bug 33284: Set renewer_id appropriately for anonymize settings
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2023-03-21 14:09:46 UTC
Size:
995 bytes
patch
obsolete
>From 58c306f6558748c5adeba05200ab947793ebee52 Mon Sep 17 00:00:00 2001 >From: Martin Renvoize <martin.renvoize@ptfs-europe.com> >Date: Tue, 21 Mar 2023 14:08:05 +0000 >Subject: [PATCH] Bug 33284: Set renewer_id appropriately for anonymize > settings > >This patch adds a trigger into the anonymize function of >Koha::Old::Checkout such that we pass along the anonymize action to the >renewals record. >--- > Koha/Old/Checkout.pm | 3 +++ > 1 file changed, 3 insertions(+) > >diff --git a/Koha/Old/Checkout.pm b/Koha/Old/Checkout.pm >index 2967a78afe..0093ae0d1b 100644 >--- a/Koha/Old/Checkout.pm >+++ b/Koha/Old/Checkout.pm >@@ -136,6 +136,9 @@ sub anonymize { > Koha::Exceptions::SysPref::NotSet->throw( syspref => 'AnonymousPatron' ) > unless $anonymous_id; > >+ my $self_renewals = $self->renewals->search( { renewer_id => $self->borrowernumber } ); >+ $self_renewals->update( { renewer_id => $anonymous_id } ); >+ > return $self->update( { borrowernumber => $anonymous_id } ); > } > >-- >2.40.0
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 33284
:
148469
|
148486
|
148487
|
148670
|
148671
|
148672
|
148772
|
148773
|
148774
|
168596
|
168597
|
168598
|
168599