web/views/cwproperties.py
changeset 4164 119a374c5eb4
parent 4159 6b2b20c73d59
child 4224 5998df006968
--- a/web/views/cwproperties.py	Mon Dec 21 20:18:53 2009 +0100
+++ b/web/views/cwproperties.py	Mon Dec 21 20:21:56 2009 +0100
@@ -196,8 +196,8 @@
         path = self._cw.relative_path()
         if '?' in path:
             path, params = path.split('?', 1)
-            form.form_add_hidden('__redirectparams', params)
-        form.form_add_hidden('__redirectpath', path)
+            form.add_hidden('__redirectparams', params)
+        form.add_hidden('__redirectpath', path)
         for key in keys:
             self.form_row(form, key, splitlabel)
         renderer = self._cw.vreg['formrenderers'].select('cwproperties', self._cw,
@@ -215,7 +215,7 @@
         subform.append_field(PropertyValueField(name='value', label=label,
                                                 eidparam=True))
         #subform.vreg = self._cw.vreg
-        subform.form_add_hidden('pkey', key, eidparam=True)
+        subform.add_hidden('pkey', key, eidparam=True)
         form.add_subform(subform)
         return subform
 
@@ -253,7 +253,7 @@
         # if user is in the managers group and the property is being created,
         # we have to set for_user explicitly
         if not subform.edited_entity.has_eid() and self.user.matching_groups('managers'):
-            subform.form_add_hidden('for_user', self.user.eid, eidparam=True)
+            subform.add_hidden('for_user', self.user.eid, eidparam=True)
 
 
 # cwproperty form objects ######################################################