From 4cfd4946a1cf616fd7d8be1d47aaa42925e979bb Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Thu, 23 Apr 2015 14:34:35 -0400 Subject: [PATCH] Bug 13871 [QA Followup] - Fix namespaces Signed-off-by: Kyle M Hall --- C4/SIP/Sip/MsgType.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/C4/SIP/Sip/MsgType.pm b/C4/SIP/Sip/MsgType.pm index 91e0396..9a32ef8 100644 --- a/C4/SIP/Sip/MsgType.pm +++ b/C4/SIP/Sip/MsgType.pm @@ -453,7 +453,7 @@ sub build_patron_status { if ( $patron and $password_ok ) { $resp .= patron_status_string($patron); - $resp .= $lang . Sip::timestamp(); + $resp .= $lang . C4::SIP::Sip::timestamp(); $resp .= add_field( FID_PERSONAL_NAME, $patron->name ); # while the patron ID we got from the SC is valid, let's @@ -481,7 +481,7 @@ sub build_patron_status { # Report that the user has no privs. # no personal name, and is invalid (if we're using 2.00) - $resp .= 'YYYY' . ( ' ' x 10 ) . $lang . Sip::timestamp(); + $resp .= 'YYYY' . ( ' ' x 10 ) . $lang . C4::SIP::Sip::timestamp(); $resp .= add_field( FID_PERSONAL_NAME, '' ); # the patron ID is invalid, but it's a required field, so -- 1.7.10.4