user account: add principal title if given

This commit is contained in:
Helmut Merz 2019-11-28 08:33:24 +01:00
parent 814f10ae51
commit dc5d913b99

View file

@ -100,6 +100,8 @@ class MemberRegistrationManager(object):
if userId in pFolder:
principal = pFolder[userId]
principal.password = password
if title:
principal.title = title
else:
pFolder[userId] = principal
elif useExisting: