[CMF-checkins] CVS: CMF/CMFDefault - DiscussionItem.py:1.24

Florent Guillaume fg@nuxeo.com
Sat, 29 Jun 2002 16:04:40 -0400


Update of /cvs-repository/CMF/CMFDefault
In directory cvs.zope.org:/tmp/cvs-serv17207/CMFDefault

Modified Files:
	DiscussionItem.py 
Log Message:
Fixed the deletion of replies (Tracker #513, thanks to Stefan H. Holek
for the patch).


=== CMF/CMFDefault/DiscussionItem.py 1.23 => 1.24 ===
         if self._container.has_key( reply_id ):
             reply = self._container.get( reply_id ).__of__( self )
-            my_replies = reply.getReplies()
+            my_replies = reply.talkback.getReplies()
             for my_reply in my_replies:
                 my_reply_id = my_reply.getId()
                 if hasattr( my_reply, 'unindexObject' ):