I want to use from django.contrib.auth.views the login and logout
functions.
Following the manual pages, in my views.py I use this procedure:
@login_required
def homepage(request):    ...

While it works fine in Firefox, and one who logouts is redirected to
the login page if one tries to access directy an inner page, in IE 6
the user can still access the inner pages!

The same happens with:
if not request.user.is_authenticated():
            return HttpResponseRedirect('/?next=%s' % request.path)


I see that it remembers the request.user in IE after the logout
function is called and the Admin logout page is displayed.

How is this possible?? What can be done?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to