From 316efbc32f7b586df36653aa894e686313a64764 Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Tue, 5 Apr 2011 17:26:35 -0400 Subject: postalCode should be a string not an integer. postalCode is defined as an Int. This means you can't define one that has a leading zero nor can you have dashes, letters, etc. This changes the data type on the server. It will still accept an int value if provided and convert it into a string. Bump the API version to 2.1. ticket 1150 --- ipalib/plugins/user.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ipalib/plugins/user.py') diff --git a/ipalib/plugins/user.py b/ipalib/plugins/user.py index 0f6fb587..90151446 100644 --- a/ipalib/plugins/user.py +++ b/ipalib/plugins/user.py @@ -189,7 +189,7 @@ class user(LDAPObject): cli_name='state', label=_('State/Province'), ), - Int('postalcode?', + Str('postalcode?', label=_('ZIP'), ), Str('telephonenumber*', -- cgit