issue 599, thanks Anthony

This commit is contained in:
Massimo Di Pierro
2012-01-12 12:38:49 -06:00
parent 08475a504c
commit c9da054d4f
2 changed files with 1 additions and 2 deletions
+1 -1
View File
@@ -1 +1 @@
Version 1.99.4 (2012-01-12 12:35:23) stable
Version 1.99.4 (2012-01-12 12:38:47) stable
-1
View File
@@ -353,7 +353,6 @@ db.auth_user.first_name.requires = IS_NOT_EMPTY(error_message=auth.messages.is_e
db.auth_user.last_name.requires = IS_NOT_EMPTY(error_message=auth.messages.is_empty)
db.auth_user.password.requires = CRYPT(key=auth.settings.hmac_key)
db.auth_user.username.requires = IS_NOT_IN_DB(db, db.auth_user.username)
db.auth_user.registration_id.requires = IS_NOT_IN_DB(db, db.auth_user.registration_id)
db.auth_user.email.requires = (IS_EMAIL(error_message=auth.messages.invalid_email),
IS_NOT_IN_DB(db, db.auth_user.email))
"""