From 701986f374607555466685c2f46f2383ec1a3241 Mon Sep 17 00:00:00 2001
From: Kyle M Hall <kyle@bywatersolutions.com>
Date: Mon, 2 Mar 2015 05:32:28 -0800
Subject: [PATCH] Bug 13159 [QA Followup] - Move script back to it's original
 path

Fixed bug in C4/SIP/ILS.pm line 202 as mentioned above.
Tested OK again and setting to Signed Off as it already working before QA.
---
 C4/SIP/ILS.pm                        |    2 +-
 {C4/SIP => misc}/sip_cli_emulator.pl |    0
 2 files changed, 1 insertion(+), 1 deletion(-)
 rename {C4/SIP => misc}/sip_cli_emulator.pl (100%)

diff --git a/C4/SIP/ILS.pm b/C4/SIP/ILS.pm
index 82cae4c..b1a6b46 100644
--- a/C4/SIP/ILS.pm
+++ b/C4/SIP/ILS.pm
@@ -199,7 +199,7 @@ sub checkin {
     }
     else {
         if ( $circ->ok ) {
-            $circ->patron( $patron = new ILS::Patron $item->{patron} );
+            $circ->patron($patron = C4::SIP::ILS::Patron->new( $item->{patron} )); 
             delete $item->{patron};
             delete $item->{due_date};
             $patron->{items} = [ grep { $_ ne $item_id } @{ $patron->{items} } ];
diff --git a/C4/SIP/sip_cli_emulator.pl b/misc/sip_cli_emulator.pl
similarity index 100%
rename from C4/SIP/sip_cli_emulator.pl
rename to misc/sip_cli_emulator.pl
-- 
1.7.10.4