[Zope] manage_add_users won't work

Daniel G. Rusch drusch@globalcrossing.com
Wed, 15 Dec 1999 09:04:33 -0600


From your post <dtml-call "manage_users([submit, REQUEST, RESPONSE])">
part of the problem is that you call manager_users as a generic function
call. Remember manage_users is a method of an object
(acl_users.manage_users). Give this a try, and let me know if you still
need help. 


<dtml-call "REQUEST.set('name', user_id)">
<dtml-call "REQUEST.set('password', password)">
<dtml-call "REQUEST.set('confirm', confirm)">
<dtml-call "REQUEST.set('roles', roles)">
<dtml-call "acl_users.manage_users(submit='Add', REQUEST=REQUEST)">


DR