Commit b3f1f9ab authored by Vincent Pelletier's avatar Vincent Pelletier

New monkeypatch: make "manage_main" work on portal_type's subobjects.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@19245 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 5a5251e4
......@@ -56,6 +56,7 @@ from Products.ERP5Type.patches import DateTimePatch
from Products.ERP5Type.patches import PythonScript
from Products.ERP5Type.patches import MailTemplates
from Products.ERP5Type.patches import persistent_patch
from Products.ERP5Type.patches import CMFCoreTypesTool
# for python2.3 compatibility
import threading
......
from Products.CMFCore.TypesTool import TypeInformation
from zLOG import LOG, INFO
if getattr(TypeInformation, 'manage_main', None) is not None:
LOG('ERP5Type/patches/CMFCoreTypesTool.py', INFO, 'This patch is no longer needed. Skipping.')
elif None in (getattr(TypeInformation, 'manage_propertiesForm__roles__', None),
getattr(TypeInformation, 'manage_propertiesForm', None):
LOG('ERP5Type/patches/CMFCoreTypesTool.py', INFO, 'manage_propertiesForm not found. Skipping.')
else:
TypeInformation.manage_main__roles__ = TypeInformation.manage_propertiesForm__roles__
TypeInformation.manage_main = TypeInformation.manage_propertiesForm
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment