From 54d6517db3e889364bc490e90f4a608209f85397 Mon Sep 17 00:00:00 2001 From: David Tang Date: Wed, 17 Oct 2012 12:51:25 +0100 Subject: [PATCH] MDL-31629 auth_shibboleth Use correct language string location --- auth/shibboleth/index.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/auth/shibboleth/index.php b/auth/shibboleth/index.php index 051ac4f5c17..5c47a2595a7 100644 --- a/auth/shibboleth/index.php +++ b/auth/shibboleth/index.php @@ -28,7 +28,7 @@ // Check whether Shibboleth is configured properly if (empty($pluginconfig->user_attribute)) { - print_error('shib_not_set_up_error', 'auth'); + print_error('shib_not_set_up_error', 'auth_shibboleth'); } /// If we can find the Shibboleth attribute, save it in session and return to main login page @@ -94,9 +94,9 @@ // If we can find any (user independent) Shibboleth attributes but no user // attributes we probably didn't receive any user attributes elseif (!empty($_SERVER['HTTP_SHIB_APPLICATION_ID']) || !empty($_SERVER['Shib-Application-ID'])) { - print_error('shib_no_attributes_error', 'auth' , '', '\''.$pluginconfig->user_attribute.'\', \''.$pluginconfig->field_map_firstname.'\', \''.$pluginconfig->field_map_lastname.'\' and \''.$pluginconfig->field_map_email.'\''); + print_error('shib_no_attributes_error', 'auth_shibboleth' , '', '\''.$pluginconfig->user_attribute.'\', \''.$pluginconfig->field_map_firstname.'\', \''.$pluginconfig->field_map_lastname.'\' and \''.$pluginconfig->field_map_email.'\''); } else { - print_error('shib_not_set_up_error', 'auth'); + print_error('shib_not_set_up_error', 'auth_shibboleth'); }