Fixed parameter for user city.

Previously the user's city parameter is defined to use the 'locality'
attribute. This was a problem because the attribute would be returned
as 'l' by the directory server causing a mismatch. Now the parameter
has been changed to use the 'l' attribute.
This commit is contained in:
Endi S. Dewata
2011-02-18 00:12:04 -06:00
committed by Adam Young
parent b26e265961
commit fa75959486
3 changed files with 10 additions and 10 deletions

View File

@@ -179,13 +179,13 @@ class user(LDAPObject):
cli_name='street',
label=_('Street address'),
),
Str('locality?',
Str('l?',
cli_name='city',
label=_('City'),
),
Str('st?',
cli_name='state',
label=_('State'),
label=_('State/Province'),
),
Int('postalcode?',
label=_('ZIP'),