26 May
2003
26 May
'03
6:06 p.m.
Stephan Goeldi wrote at 2003-5-26 12:36 +0200:
via the "error_log" instance in your Zope root folder.
Exception Type KeyError Exception Value isAnon .... * Module Products.PageTemplates.TALES, line 211, in evaluate URL: /site.com/site/portal_skins/custom/blogindex_html Line 84, Column 30 Expression: not:'isAnon' Names:
In line 84, Column 30, your "blogindex_html" (or an include macro) references "not: 'isAnon'". Almost surely, the enclosing quotes "'" are wrong. Try: "not: isAnon". Check that "isAnon" is defined above (it is not a predefined variable). Dieter