[Zope-Checkins] CVS: Zope/lib/python/OFS - CopySupport.py:1.82.6.1

Chris Withers chrisw@nipltd.com
Wed, 18 Dec 2002 07:08:26 -0500


Update of /cvs-repository/Zope/lib/python/OFS
In directory cvs.zope.org:/tmp/cvs-serv21101/lib/python/OFS

Modified Files:
      Tag: Zope-2_6-branch
	CopySupport.py 
Log Message:
      - Collector #714: CopySupport's manage_clone now calls
        manage_afterClone in the same way that manage_pasteObjects does.



=== Zope/lib/python/OFS/CopySupport.py 1.82 => 1.82.6.1 ===
--- Zope/lib/python/OFS/CopySupport.py:1.82	Wed Aug 14 17:42:56 2002
+++ Zope/lib/python/OFS/CopySupport.py	Wed Dec 18 07:08:25 2002
@@ -275,7 +275,7 @@
         ob._setId(id)
         self._setObject(id, ob)
         ob=ob.__of__(self)
-        #ob._postCopy(self, op=0)
+        ob.manage_afterClone(ob)
         return ob
 
     def cb_dataValid(self):