From 8431ab83a1943bbb54e93f732303de20df701d75 Mon Sep 17 00:00:00 2001 From: deyk Date: Tue, 19 Jun 2012 12:40:29 -0700 Subject: [PATCH] Fixed naming of `identifier` attribute tags. --- cas_provider/views.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cas_provider/views.py b/cas_provider/views.py index 155189c..3883ed0 100644 --- a/cas_provider/views.py +++ b/cas_provider/views.py @@ -355,7 +355,8 @@ def auth_success_response(user, pgt, proxies): for i in rr] if identifiers: - attrs['identifiers'] = identifiers + # Singular `identifier`, as that is the name of the element tag(s). + attrs['identifier'] = identifiers if attrs: formatter = get_callable(settings.CAS_CUSTOM_ATTRIBUTES_FORMATER) -- 2.20.1