Hi, so why do these two pieces of code produce different results? (I thought they should print the same, according to the with-tag howto) (the second one prints the title of folder A twice) <dtml-with A> <dtml-var title><br> <dtml-var "B.title"> </dtml-with> <dtml-with A> <dtml-var title><br> <dtml-with B> <dtml-var title> </dtml-with> </dtml-with> --Oliver