From f918b7698bbbbab8d0280d6d6283b82996a9a69e Mon Sep 17 00:00:00 2001 From: Timo Stollenwerk Date: Mon, 6 Sep 2010 10:39:07 +0000 Subject: [PATCH] Fetch context for the comment view with "context = aq_inner(self.context)". This fixes a failing Plone 3 test. svn path=/plone.app.discussion/trunk/; revision=39679 --- CHANGES.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGES.txt b/CHANGES.txt index 2f8953c..0031be4 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -4,6 +4,9 @@ Changelog 1.0b7 (unreleased) ------------------ +* Fetch context for the comment view with "context = aq_inner(self.context)". + [timo] + * Raise an unauthorized error when authenticated users try to post a comment on a content object that has discussion disabled. Thanks to vincentfrentin for reporting this.