[Zope] string crisis....
The Dragon De Monsyne
dragondm@integral.org
Wed, 8 Sep 1999 09:43:48 -0500 (CDT)
On Wed, 8 Sep 1999, Arnaud Lecat wrote:
> id is ok for me... it contains the good string
>
> A simple display test for
> *<dtml-var mydocid>*<dtml-var id>*
>
> gives me
> *design*design*
>
> And <dtml-if "mydocid==id">blah blah</dtml-if> is not true !!! What's
> happening ?
id is probably a method not a string.
try <dtml-if "mydocid==id()">blah blah</dtml-if>
^^
I've been burned by this too.
-The Dragon De Monsyne