Bugzilla – Attachment 39273 Details for
Bug 14151
SIP2 Checkouts fail in Koha 3.18
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 14151 - SIP2 Checkouts file in Koha 3.18
Bug-14151---SIP2-Checkouts-file-in-Koha-318.patch (text/plain), 1.12 KB, created by
Chris Cormack
on 2015-05-18 05:07:14 UTC
(
hide
)
Description:
Bug 14151 - SIP2 Checkouts file in Koha 3.18
Filename:
MIME Type:
Creator:
Chris Cormack
Created:
2015-05-18 05:07:14 UTC
Size:
1.12 KB
patch
obsolete
>From 3b0248c8633b279eb1494bf485ded2c644b44d9d Mon Sep 17 00:00:00 2001 >From: Kyle M Hall <kyle@bywatersolutions.com> >Date: Tue, 5 May 2015 14:20:01 -0400 >Subject: [PATCH] Bug 14151 - SIP2 Checkouts file in Koha 3.18 > >When Bug 12820 was added to Koha 3.18, the namespace was not altered. >This causes checkouts to fail via SIP2. > >Test Plan: >1) Attempt to check out an item via SIP2 >2) Note you never get back a response >3) Apply this patch >4) Repeat step 1 >5) Note it now works! > >Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz> >--- > C4/SIP/ILS.pm | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > >diff --git a/C4/SIP/ILS.pm b/C4/SIP/ILS.pm >index 3db9f6b..ee0d75e 100644 >--- a/C4/SIP/ILS.pm >+++ b/C4/SIP/ILS.pm >@@ -131,8 +131,8 @@ sub checkout { > > $circ = new ILS::Transaction::Checkout; > # BEGIN TRANSACTION >- $circ->patron($patron = C4::SIP::ILS::Patron->new( $patron_id)); >- $circ->item($item = C4::SIP::ILS::Item->new( $item_id)); >+ $circ->patron($patron = ILS::Patron->new( $patron_id)); >+ $circ->item($item = ILS::Item->new( $item_id)); > if ($fee_ack) { > $circ->fee_ack($fee_ack); > } >-- >2.1.4
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 14151
:
38872
| 39273