[Zope] deleting users!

Dieter Maurer dieter@handshake.de
Tue, 10 Jul 2001 20:25:03 +0200 (CEST)


Hugo Ramos writes:
 > When trying to delete them I have no sucess though...
 > 
 > I use this code:
 > 
 >       <dtml-with "folder1.folder2">
 >          <dtml-call "REQUEST.set('name', form_variable)">
 >          <dtml-call "acl_users.manage_users(submit='Delete',
 > REQUEST=REQUEST)">
 >       </dtml-with>
Use:
   <dtml-call "REQUEST.set('names', (form_variable,))">

"Delete" wants a sequence of user names to be deleted, not a single
one.


Dieter