[Zope-CMF] Set a member property outside out the personalize form

seb bacon seb@jamkit.com
Fri, 27 Jul 2001 20:35:41 +0100


* Gitte Wange <gitte@mmmanager.org> [010727 19:48]:
> I have tried with this code:
> <dtml-call "portal_registration.setProperties(guid)">
> 
> the guid argument contains a string
> 
> What is wrong then ??

You need to call setProperties with keyword arguments:

  <dtml-call "portal_registration.setProperties(guid=guid)">

seb