From b3627e0d267f68e23438def1fccc7fab4a0ac196 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 --- C4/SIP/Sip/MsgType.pm | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/C4/SIP/Sip/MsgType.pm b/C4/SIP/Sip/MsgType.pm index ac993e0..8754e7d 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.2.5