Commit 4cc721b3 authored by Alexandre Boeglin's avatar Alexandre Boeglin

Fixed ERP5TypeInformation's manage_propertiesForm : it wasn't using the patched method.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@1900 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 5ab515c7
...@@ -67,6 +67,7 @@ from OFS.PropertyManager import PropertyManager, type_converters ...@@ -67,6 +67,7 @@ from OFS.PropertyManager import PropertyManager, type_converters
from OFS.PropertyManager import escape from OFS.PropertyManager import escape
from Globals import DTMLFile from Globals import DTMLFile
from Products.ERP5Type.Utils import createExpressionContext from Products.ERP5Type.Utils import createExpressionContext
from Products.ERP5Type.ERP5Type import ERP5TypeInformation
from Products.CMFCore.Expression import Expression from Products.CMFCore.Expression import Expression
class ERP5PropertyManager(PropertyManager): class ERP5PropertyManager(PropertyManager):
...@@ -209,6 +210,7 @@ PropertyManager._propertyMap = ERP5PropertyManager._propertyMap ...@@ -209,6 +210,7 @@ PropertyManager._propertyMap = ERP5PropertyManager._propertyMap
PropertyManager.propdict = ERP5PropertyManager.propdict PropertyManager.propdict = ERP5PropertyManager.propdict
PropertyManager.hasProperty = ERP5PropertyManager.hasProperty PropertyManager.hasProperty = ERP5PropertyManager.hasProperty
PropertyManager.getProperty = ERP5PropertyManager.getProperty PropertyManager.getProperty = ERP5PropertyManager.getProperty
ERP5TypeInformation.manage_propertiesForm = ERP5PropertyManager.manage_propertiesForm
from ZPublisher.Converters import type_converters, field2string from ZPublisher.Converters import type_converters, field2string
......
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