[Zope] problem on delete off a ZObjectManager

Dieter Maurer dieter@handshake.de
Mon, 13 May 2002 21:22:11 +0200


dorian santner writes:
 > I have an object to delete (id=Santner.Dorian) and 
 > try to call a method (EPerson_delete) that is defined in the ZClass (EPerson)
 > which simply does:
 > 
 > <dtml-call "manage_delObjects(id)">
You see the "plural"?
"manage_delObjects" wants a list of id's to delete.

Is you ZClass an ObjectManager?

You call "manage_delObjects" on the ObjectManager that contains the
object to be deleted, not the object itself.


Dieter