30 May
2001
30 May
'01
1:30 a.m.
Hey Guys: I have instances of a zclass from a product of meta type 'story'. I these instances have a property of type text. I am attempting to update the 'story_title' property of this object. These objects are stored in the folder 'entries'. I am passing story_id and story title from a form to a dtml method. Here is the code for the dtml method. I get no errors. Thanks cj <dtml-with entries> <dtml-in "objectValues(['story'])"> <dtml-if "id == story_id"> <dtml-call "manage_changeProperties( story_title = REQUEST['story_title'])"> </dtml-if> </dtml-in> </dtml-with>