[Zope] still confused newbie

Evan Simpson evan@4-am.com
Sun, 29 Aug 1999 10:16:27 -0500


lethal@innocent.com wrote:

> <dtml-with test>
> <dtml-call "manage_changeProperties ({'test.msg': 'blablabla'})">
> </dtml-with>

This is *almost* right.  It attempts to change a property of 'test' named 'test.msg'.  Since 'test' has no such property, this fails silently.  You want:

<dtml-with test>
<dtml-call "manage_changeProperties ({'msg': 'blablabla'})">
</dtml-with>