Skip to content

Commit

Permalink
Fixed #1234 -- Fixed admin problem with login status getting out of s…
Browse files Browse the repository at this point in the history
…ync with multiple windows/tabs. Thanks, oggie rob

git-svn-id: http://code.djangoproject.com/svn/django/trunk@2010 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
adrianholovaty committed Jan 16, 2006
1 parent c4ab08a commit d5a5f0f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion django/contrib/admin/views/decorators.py
Expand Up @@ -3,7 +3,7 @@
from django.models.auth import users
from django.utils import httpwrappers
from django.utils.translation import gettext_lazy
import base64, md5
import base64, datetime, md5
import cPickle as pickle

ERROR_MESSAGE = gettext_lazy("Please enter a correct username and password. Note that both fields are case-sensitive.")
Expand Down Expand Up @@ -47,6 +47,10 @@ def staff_member_required(view_func):
def _checklogin(request, *args, **kwargs):
if not request.user.is_anonymous() and request.user.is_staff:
# The user is valid. Continue to the admin page.
if request.POST.has_key('post_data'):
# User must have re-authenticated through a different window
# or tab.
request.POST = _decode_post_data(request.POST['post_data'])
return view_func(request, *args, **kwargs)

assert hasattr(request, 'session'), "The Django admin requires session middleware to be installed. Edit your MIDDLEWARE_CLASSES setting to insert 'django.middleware.sessions.SessionMiddleware'."
Expand Down Expand Up @@ -84,6 +88,8 @@ def _checklogin(request, *args, **kwargs):
else:
if user.check_password(request.POST.get('password', '')):
request.session[users.SESSION_KEY] = user.id
user.last_login = datetime.datetime.now()
user.save()
if request.POST.has_key('post_data'):
post_data = _decode_post_data(request.POST['post_data'])
if post_data and not post_data.has_key(LOGIN_FORM_KEY):
Expand Down

0 comments on commit d5a5f0f

Please sign in to comment.