Ticket #5593: stale_sessionid.patch

File stale_sessionid.patch, 437 bytes (added by nezroy <nezroy@…>, 17 years ago)

Patch to force client update of sessionid cookie.

  • django/contrib/sessions/backends/db.py

     
    2626
    2727            # Save immediately to minimize collision
    2828            self.save()
     29            self.modified = True
    2930            return {}
    3031           
    3132    def exists(self, session_key):
Back to Top