make captcha field not required. otherwise recaptcha is not working.

svn path=/plone.app.discussion/trunk/; revision=28892
This commit is contained in:
Timo Stollenwerk 2009-08-15 10:17:34 +00:00
parent cdfbdb3d7d
commit 4ef604f43f
1 changed files with 1 additions and 1 deletions

View File

@ -165,7 +165,7 @@ class IComment(Interface):
class ICaptcha(Interface):
captcha = schema.TextLine(title=u"Captcha",
required=True)
required=False)
class ICommentingTool(Interface):
"""A tool that indexes all comments for usage by the management interface.