app/soc/views/models/user.py
changeset 662 0e89b027b140
parent 656 a76f1b443ea4
child 755 1ed041c0cdc6
--- a/app/soc/views/models/user.py	Wed Dec 03 23:48:33 2008 +0000
+++ b/app/soc/views/models/user.py	Wed Dec 03 23:49:10 2008 +0000
@@ -146,15 +146,20 @@
   def _editGet(self, request, entity, form):
     """See base.View._editGet().
     """
+
     # fill in the email field with the data from the entity
     form.fields['email'].initial = entity.account.email()
 
+    super(View, self)._editGet(request, entity, form)
+
   def _editPost(self, request, entity, fields):
     """See base.View._editPost().
     """
+
     # fill in the account field with the user created from email
     fields['account'] = users.User(fields['email'])
 
+    super(View, self)._editPost(request, entity, fields)
 
 view = View()