Bugzilla – Attachment 153084 Details for
Bug 34212
Bug 23336 follow-up code improvements
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 34212: Replace Koha::Checkouts->find with $item->checkout
Bug-34212-Replace-KohaCheckouts-find-with-item-che.patch (text/plain), 784 bytes, created by
Martin Renvoize (ashimema)
on 2023-07-06 08:09:09 UTC
(
hide
)
Description:
Bug 34212: Replace Koha::Checkouts->find with $item->checkout
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2023-07-06 08:09:09 UTC
Size:
784 bytes
patch
obsolete
>From a97c9c713de555197f6beb797ff172c14a55af56 Mon Sep 17 00:00:00 2001 >From: Martin Renvoize <martin.renvoize@ptfs-europe.com> >Date: Thu, 6 Jul 2023 07:44:48 +0100 >Subject: [PATCH] Bug 34212: Replace Koha::Checkouts->find with $item->checkout > >--- > C4/Circulation.pm | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/C4/Circulation.pm b/C4/Circulation.pm >index ab03362e06..0f1b6914aa 100644 >--- a/C4/Circulation.pm >+++ b/C4/Circulation.pm >@@ -1546,7 +1546,7 @@ sub AddIssue { > $datedue, > $issuedate, # here interpreted as the renewal date > ); >- $issue = Koha::Checkouts->find( { itemnumber => $item_object->itemnumber } ); >+ $issue = $item_object->checkout; > } > else { > >-- >2.41.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 34212
:
153084
|
153145
|
153146
|
153147