Chris Withers wrote:
> To do what you want, you probably want something like:
>
> <dtml-call
> "manage_changeProperties(counter_value=getProperty(counter_value,counter_starting_value-1)+1)">
Erk, maybe this:
<dtml-call
"manage_changeProperties(counter_value=getProperty('counter_value',getProperty(counter_starting_value,0)-1)+1)">
Chris