[Zope] PABlog error message
Dieter Maurer
dieter@handshake.de
Mon, 26 May 2003 20:06:19 +0200
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