Author: eallen
Date: 2008-10-20 15:17:47 -0400 (Mon, 20 Oct 2008)
New Revision: 2662
Modified:
mgmt/trunk/cumin/python/wooly/forms.py
Log:
Don't write DictParams to the hidden inputs
Modified: mgmt/trunk/cumin/python/wooly/forms.py
===================================================================
--- mgmt/trunk/cumin/python/wooly/forms.py 2008-10-20 19:00:15 UTC (rev 2661)
+++ mgmt/trunk/cumin/python/wooly/forms.py 2008-10-20 19:17:47 UTC (rev 2662)
@@ -49,6 +49,8 @@
for value in collection:
svalue = param.marshal(value)
self.write_hidden_input(key, svalue, writer)
+ elif param.is_dictionary:
+ pass
else:
value = session.get(key)
default = param.get_default(session)
Show replies by date