Changeset 898
- Timestamp:
- 06/27/07 11:57:50
- Files:
-
- qPloneComments/trunk/utils.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
qPloneComments/trunk/utils.py
r879 r898 62 62 email = obj.getProperty('email', None) 63 63 if email is None: 64 userid = obj.getOwnerTuple()[1] 64 creators = hasattr(obj, 'listCreators') and obj.listCreators() or [obj.Creator(),] 65 userid = creators and creators[0] or "" 65 66 creator = getToolByName(context, 'portal_membership').getMemberById(userid) 66 67 if creator and allowEmail(context, reply, state, creator):
