Works like a wonder now ! Thanks a lot.. ( i still wonder why you use REQUEST = REQUEST in the call, though .. Am i just being stupid ? ) ------------------------------------------------ Geir B Hansen geirh@funcom.com Web-designer / Graphic artist Funcom Oslo http://www.funcom.com ------------------------------------------------
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