[Zope] Simple DTML Method/Acquisition problem

Pavlos Christoforou pavlos@gaaros.msrc.sunysb.edu
Thu, 4 Mar 1999 20:32:06 -0500 (EST)


On Thu, 4 Mar 1999, David Ascher wrote:

> <!--#in expr="objectValues(['Folder'])"-->
> <!--#if hidden -->
> <!--#else -->
> <a href="<!--#var id-->"><!--#var title--></a><p>
> <!--#/if -->
> <!--#/in -->
> 

Check if your DTML properly closes all tags. I had something similar
happening to me in a complicated DTML, when some condition failed to add a
</TABLE> tag. 

BTW you can use
<!--# unless hidden-->
...
<!--# /unless-->

Pavlos