plone.app.discussion/plone/app/discussion/__init__.py
Timo Stollenwerk 9adff9e869 comment out monkey patch of plone.app.vocabularies for now.
svn path=/plone.app.discussion/trunk/; revision=30055
2009-09-30 11:21:15 +00:00

11 lines
476 B
Python

# Monkey patch plone.app.vocabularies.types.BAD_TYPES and remove
# 'Discussion Item' from this tuple, so that Comments can be found
# in the search. This will become needless once plone.app.discussion
# will become a part of Plone 4.
#import plone.app.vocabularies.types
#
#new_bad_types = list(plone.app.vocabularies.types.BAD_TYPES)
#if 'Discussion Item' in new_bad_types:
# new_bad_types.remove('Discussion Item')
#plone.app.vocabularies.types.BAD_TYPES = new_bad_types