Bugzilla – Attachment 90775 Details for
Bug 23103
Cannot checkin items lost by deleted patrons with fines attached
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 23103: (QA Follow-up) Return undef implicitly
Bug-23103-QA-Follow-up-Return-undef-implicitly.patch (text/plain), 861 bytes, created by
Kyle M Hall (khall)
on 2019-06-19 11:01:14 UTC
(
hide
)
Description:
Bug 23103: (QA Follow-up) Return undef implicitly
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2019-06-19 11:01:14 UTC
Size:
861 bytes
patch
obsolete
>From c6bd221760dae0097eea8018d833e02bd6c99b4e Mon Sep 17 00:00:00 2001 >From: Kyle M Hall <kyle@bywatersolutions.com> >Date: Wed, 19 Jun 2019 07:00:01 -0400 >Subject: [PATCH] Bug 23103: (QA Follow-up) Return undef implicitly > >--- > C4/Circulation.pm | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/C4/Circulation.pm b/C4/Circulation.pm >index 773f5701da..84349d98cf 100644 >--- a/C4/Circulation.pm >+++ b/C4/Circulation.pm >@@ -2421,7 +2421,7 @@ sub _FixAccountForLostAndReturned { > > return unless $accountline->borrowernumber; > my $patron = Koha::Patrons->find( $accountline->borrowernumber ); >- return undef unless $patron; # Patron has been deleted, nobody to credit the return to >+ return unless $patron; # Patron has been deleted, nobody to credit the return to > > my $account = $patron->account; > >-- >2.20.1 (Apple Git-117)
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 23103
:
90538
|
90573
|
90775
|
90878
|
90879
|
90883
|
90884