If you modify the variable directly it won't call the setter in the
django session app. So you need to:

# get the variable
myform = request.session['myform']
# update it
myform['field1']=someVariable
# update your session
request.session['myform'] = myform

I had the same problem and that fixed it form. If you have a solution
for skipping the 2 extra steps I would use it.


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Django 
users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to