Bugzilla – Attachment 85153 Details for
Bug 22067
Koha::Patron->can_see_patron_infos should return if no patron is passed
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 22067: Return if no patron passed to can_see_patron_infos
Bug-22067-Return-if-no-patron-passed-to-canseepatr.patch (text/plain), 1.19 KB, created by
Marcel de Rooy
on 2019-02-15 11:03:28 UTC
(
hide
)
Description:
Bug 22067: Return if no patron passed to can_see_patron_infos
Filename:
MIME Type:
Creator:
Marcel de Rooy
Created:
2019-02-15 11:03:28 UTC
Size:
1.19 KB
patch
obsolete
>From 83a986986c74cab6480f049470350041f1e18684 Mon Sep 17 00:00:00 2001 >From: Nick Clemens <nick@bywatersolutions.com> >Date: Thu, 3 Jan 2019 20:52:15 +0000 >Subject: [PATCH] Bug 22067: Return if no patron passed to can_see_patron_infos >Content-Type: text/plain; charset=utf-8 > >To test: >1 - Find an adult patron >2 - Add a child to their account >3 - Delete the parent from the db >4 - Attempt to edit the child record >5 - Apply patch >6 - Repeat >7 - Note you can edit the child account >8 - Note guarantor id is not a link > >Signed-off-by: Maryse Simard <maryse.simard@inlibro.com> > >Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> >No blocker for me, but we are a bit hiding that guarantorid probably should >be a foreign key cleared to NULL at deletion time. >--- > Koha/Patron.pm | 1 + > 1 file changed, 1 insertion(+) > >diff --git a/Koha/Patron.pm b/Koha/Patron.pm >index 25b3531aa9..dff9320084 100644 >--- a/Koha/Patron.pm >+++ b/Koha/Patron.pm >@@ -1092,6 +1092,7 @@ Return true if the patron (usually the logged in user) can see the patron's info > > sub can_see_patron_infos { > my ( $self, $patron ) = @_; >+ return unless $patron; > return $self->can_see_patrons_from( $patron->library->branchcode ); > } > >-- >2.11.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 22067
:
83629
|
83653
| 85153