[Zope-Checkins] CVS: Zope/lib/python/OFS - PropertyManager.py:1.46.6.2
Ken Manheimer
klm@zope.com
Mon, 16 Sep 2002 11:17:56 -0400
Update of /cvs-repository/Zope/lib/python/OFS
In directory cvs.zope.org:/tmp/cvs-serv20097
Modified Files:
Tag: Zope-2_6-branch
PropertyManager.py
Log Message:
Port casey's fix of property sheet ints to the 2.6 branch.
=== Zope/lib/python/OFS/PropertyManager.py 1.46.6.1 => 1.46.6.2 ===
--- Zope/lib/python/OFS/PropertyManager.py:1.46.6.1 Fri Sep 13 06:16:38 2002
+++ Zope/lib/python/OFS/PropertyManager.py Mon Sep 16 11:17:55 2002
@@ -259,7 +259,7 @@
for prop in self._propertyMap():
name=prop['id']
if 'w' in prop.get('mode', 'wd'):
- value=REQUEST.get(name, type_converters[prop['type']](''))
+ value=REQUEST.get(name, '')
self._updateProperty(name, value)
if REQUEST:
message="Saved changes."