From ab69df5a8ec628473f037d44083b47809745431b Mon Sep 17 00:00:00 2001 From: hernani Date: Fri, 15 Oct 2010 10:37:44 +0000 Subject: [PATCH] Fixes an error reported in http://meta.osqa.net/questions/5274/why-does-unique-email-button-in-admin-not-work . git-svn-id: http://svn.osqa.net/svnroot/osqa/trunk@606 0cfe37f9-358a-4d5e-be75-b63607b5c754 --- forum/settings/users.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/forum/settings/users.py b/forum/settings/users.py index 2a79942..040e8eb 100644 --- a/forum/settings/users.py +++ b/forum/settings/users.py @@ -30,7 +30,8 @@ required=False, EMAIL_UNIQUE = Setting('EMAIL_UNIQUE', True, USERS_SET, dict( label = _("Force unique email"), -help_text = _("Should each user have an unique email."))) +help_text = _("Should each user have an unique email."), +required=False)) REQUIRE_EMAIL_VALIDATION_TO = Setting('REQUIRE_EMAIL_VALIDATION_TO', [], USERS_SET, dict( label = _("Require email validation to..."), -- 2.39.5