From dedd60952f42dbeea5ffde35bb35099dc82acf44 Mon Sep 17 00:00:00 2001 From: Paul Pound Date: Mon, 26 Jun 2017 14:15:23 -0300 Subject: [PATCH] added check for error message from Relais before trying to display the error message --- includes/relais.inc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/includes/relais.inc b/includes/relais.inc index 0f5e03a..ab3ddd3 100644 --- a/includes/relais.inc +++ b/includes/relais.inc @@ -120,9 +120,10 @@ function upei_roblib_ill_build_err_msg($msg_from_server) { $campus_id = l(t('Campus ID'), 'http://www.upei.ca/vpaf/campuscard'); $ill_email = l(t('ill@upei.ca'), 'mailto:ill@upei.ca'); $phone = l(t('902-566-0583'), 'tel:902-566-0353'); + $server_response = !empty($msg_from_server) ? 'Server Response: ' . $msg_from_server : ''; return t('Oops. Something went wrong.
Check the "Your Last Name" and "Your Campus ID" fields - those two need to match what is on file . (Your !campus_id appears as the NUMBER near the middle of your campus card). If you do not have a !campus_id, please contact the Robertson Library Service Desk, or, -call !phone. Note: if you are a student taking online courses only, please email !ill_email.
Server response: @msg_from_server', - array('!campus_id' => $campus_id, '!ill_email' => $ill_email, '!phone' => $phone, '@msg_from_server' => $msg_from_server)); +call !phone. Note: if you are a student taking online courses only, please email !ill_email.
@msg_from_server', + array('!campus_id' => $campus_id, '!ill_email' => $ill_email, '!phone' => $phone, '@msg_from_server' => $server_response)); }