Yellow ppl, I've managed to add and change users inside an acl_users folder. 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> acl_users folder is inside folder2. What's wrong??? best regards ===== Hugo Ramos - hugo@zopers.org ZopersORG - http://zopers.org/ ===== Do not meddle in the affairs of programmers, for they are easy to annoy, and have all the source code!!!
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
On Tue, 10 Jul 2001, Dieter Maurer wrote:
<dtml-call "REQUEST.set('names', (form_variable,))">
"Delete" wants a sequence of user names to be deleted, not a single one.
This is a bug, please put it into Collector! Oleg. ---- Oleg Broytmann http://www.zope.org/Members/phd/ phd@phd.pp.ru Programmers don't die, they just GOSUB without RETURN.
participants (3)
-
Dieter Maurer -
Hugo Ramos -
Oleg Broytmann