9 May
2000
9 May
'00
8:18 p.m.
On Fri, 5 May 2000, lexberezhny wrote:
which a value of "This is the title of sub_folder_title". How can i get access to "sub_folder_title" if I am in "top_folder"? I have tried <dtml-var "sub_folder/sub_folder_title"> but it gives me a name error on
Try <dtml-with sub_folder> <dtml-var sub_folder_title> </dtml-with> <dtml-var "sub_folder.sub_folder_title"> would probably also work. --RDM