From 682ceb2760a96bddfab902ca67928596269f5aa4 Mon Sep 17 00:00:00 2001 From: Timo Stollenwerk Date: Mon, 31 May 2010 10:05:57 +0000 Subject: [PATCH] fix r36843 commit. set HAS_WRAPPED_FORM to false for plone.z3cform < 0.6.0. svn path=/plone.app.discussion/trunk/; revision=36845 --- plone/app/discussion/browser/comments.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plone/app/discussion/browser/comments.py b/plone/app/discussion/browser/comments.py index f78a5ce..592008f 100644 --- a/plone/app/discussion/browser/comments.py +++ b/plone/app/discussion/browser/comments.py @@ -47,7 +47,7 @@ try: from plone.z3cform.interfaces import IWrappedForm HAS_WRAPPED_FORM = True except ImportError: - HAS_WRAPPED_FORM = True + HAS_WRAPPED_FORM = False class CommentForm(extensible.ExtensibleForm, form.Form):