From 6e8f812eee73e769126d9b3e8ae0a4f7cd84ec57 Mon Sep 17 00:00:00 2001 From: Hanno Schlichting Date: Fri, 16 Oct 2009 00:51:58 +0000 Subject: [PATCH] Duh, I wanted the new CatalogAware without the OpaqueItemManager base, not the old CMFCatalogAware svn path=/plone.app.discussion/trunk/; revision=30630 --- plone/app/discussion/comment.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plone/app/discussion/comment.py b/plone/app/discussion/comment.py index 25a1239..d8341f5 100644 --- a/plone/app/discussion/comment.py +++ b/plone/app/discussion/comment.py @@ -12,11 +12,11 @@ from AccessControl.Owned import Owned from plone.app.discussion.interfaces import IComment from Products.CMFCore.DynamicType import DynamicType -from Products.CMFCore.CMFCatalogAware import CMFCatalogAware +from Products.CMFCore.CMFCatalogAware import CatalogAware from Products.CMFCore.CMFCatalogAware import WorkflowAware from Products.CMFCore.utils import getToolByName -class Comment(CMFCatalogAware, WorkflowAware, DynamicType, +class Comment(CatalogAware, WorkflowAware, DynamicType, Traversable, RoleManager, Owned, Implicit): """A comment.