Bugzilla – Attachment 173083 Details for
Bug 38073
Missing use after Bug 25812
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 38073: Add missing use in C4/SIP/ILS.pm
Bug-38073-Add-missing-use-in-C4SIPILSpm.patch (text/plain), 985 bytes, created by
Brendan Lawlor
on 2024-10-21 20:28:15 UTC
(
hide
)
Description:
Bug 38073: Add missing use in C4/SIP/ILS.pm
Filename:
MIME Type:
Creator:
Brendan Lawlor
Created:
2024-10-21 20:28:15 UTC
Size:
985 bytes
patch
obsolete
>From b71b805e77cf5dacfaf6a47ea18261dfdab6594a Mon Sep 17 00:00:00 2001 >From: Fridolin Somers <fridolin.somers@biblibre.com> >Date: Thu, 10 Oct 2024 11:43:24 +0200 >Subject: [PATCH] Bug 38073: Add missing use in C4/SIP/ILS.pm > >Bug 25812 added some code with Koha::XXX objects. >They must be added in used modules > >Test plan : >Check SIP server still runs > >Signed-off-by: Brendan Lawlor <blawlor@clamsnet.org> >--- > C4/SIP/ILS.pm | 6 ++++++ > 1 file changed, 6 insertions(+) > >diff --git a/C4/SIP/ILS.pm b/C4/SIP/ILS.pm >index ab5d06c41b..284b93a018 100644 >--- a/C4/SIP/ILS.pm >+++ b/C4/SIP/ILS.pm >@@ -18,7 +18,13 @@ use C4::SIP::ILS::Transaction::Renew; > use C4::SIP::ILS::Transaction::RenewAll; > use C4::SIP::ILS::Transaction; > use C4::SIP::Sip qw( siplog ); >+ >+use Koha::Account; >+use Koha::Account::Lines; > use Koha::DateUtils qw( dt_from_string output_pref ); >+use Koha::Items; >+use Koha::Libraries; >+use Koha::Number::Price; > > my %supports = ( > 'magnetic media' => 1, >-- >2.39.5
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 38073
:
172582
|
173083
|
173920