[Zope] Newbie question: updating properties

Stolker, Wim w.t.stolker@getronics.com
Mon, 3 Jan 2000 10:26:37 +0100


Hi!
Happy New Year!

I have a property x type int with value 1

The following piece of dtml code:

	<dtml-var x>,
	<dtml-call "manage_changeProperties(x=2)">
	<dtml-var x>,
	<dtml-var "this().getProperty('x')">

prints

	1,1,2

I wonder why it doesn't print 1,2,2
Why is the new property value not reflected in the dtml-var?

anyone any idea's?

Thanks, Wim.