# HG changeset patch # User Pawel Solyga # Date 1222778825 0 # Node ID d05444cf464166794af40f4a7f584ae56887a7b8 # Parent 4ba836d7482929b23b51ff58e0f47f0d38de6ff7 Replaced context.update call to simple value assignment in site.user.profile.create view function. diff -r 4ba836d74829 -r d05444cf4641 app/soc/views/site/user/profile.py --- a/app/soc/views/site/user/profile.py Mon Sep 29 17:22:31 2008 +0000 +++ b/app/soc/views/site/user/profile.py Tue Sep 30 12:47:05 2008 +0000 @@ -412,6 +412,6 @@ # no link name specified, so start with an empty form form = CreateForm() - context.update({'form': form}) + context['form'] = form return response_helpers.respond(request, template, context) \ No newline at end of file