diff --git a/plone/app/discussion/browser/comments.py b/plone/app/discussion/browser/comments.py index 42aa162..66d5e8c 100644 --- a/plone/app/discussion/browser/comments.py +++ b/plone/app/discussion/browser/comments.py @@ -85,6 +85,10 @@ class CommentForm(extensible.ExtensibleForm, form.Form): 'author_name', 'author_email',) + def updateWidgets(self): + super(CommentForm, self).updateWidgets() + self.widgets['in_reply_to'].mode = interfaces.HIDDEN_MODE + @button.buttonAndHandler(u'Comment') def handleApply(self, action): data, errors = self.extractData()