##// END OF EJS Templates
ldap: fixed email extraction typo. An empty...
marcink -
r886:8170c0f9 default
parent child Browse files
Show More
@@ -444,7 +444,7 b' class RhodeCodeAuthPlugin(RhodeCodeExter'
444 'lastname': safe_unicode(
444 'lastname': safe_unicode(
445 get_ldap_attr('attr_lastname') or lastname),
445 get_ldap_attr('attr_lastname') or lastname),
446 'groups': groups,
446 'groups': groups,
447 'email': get_ldap_attr('attr_email' or email),
447 'email': get_ldap_attr('attr_email') or email,
448 'admin': admin,
448 'admin': admin,
449 'active': active,
449 'active': active,
450 "active_from_extern": None,
450 "active_from_extern": None,
General Comments 0
You need to be logged in to leave comments. Login now