8 May
2000
8 May
'00
5:02 p.m.
If I create a DTML method called 'method' containing only:
<dtml-if 'method'> There is always true </dtml-if>
I get:
Error Type: SystemError Error Value: infinite recursion in document template
Try: <dtml-if "method"> Always true </dtml-if> Without the quotes, you're calling the method, which then calls the method, which then calls the method . . . With the quotes you're just evaluating it's existence. -CJ