[CMF-checkins] CVS: CMF/CMFDefault/skins/generic - TitleOrId.py:1.2
Andrew Sawyers
andrew@zope.com
Tue, 9 Oct 2001 14:10:04 -0400
Update of /cvs-repository/CMF/CMFDefault/skins/generic
In directory cvs.zope.org:/tmp/cvs-serv30072
Modified Files:
TitleOrId.py
Log Message:
*changed the parameter and first condition to follow logically -
if dontCall is true, then really don't call the methods....
=== CMF/CMFDefault/skins/generic/TitleOrId.py 1.1 => 1.2 ===
-##parameters=dontCall=0
+##parameters=dontCall=1
##bind namespace=_
##title=Return Title or getId
-if dontCall:
+if not dontCall:
title = context.Title
id = context.id
else: