Changeset 143

Show
Ignore:
Timestamp:
11/08/07 12:52:20
Author:
thejimmyg
Message:

Fixed #38, cookie sign out path should match the path specified in the config file

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • AuthKit/trunk/CHANGELOG.txt

    r142 r143  
    440.4.1 (**svn**) 
    55 
     6* Fixed #38, cookie sign out path should match the path specified in  
     7  the config file. 
    68* Fixed #37, missing import of sys in digest authentication 
    79* Updated SQLAlchemy code to use SQLAlchemyManager. Needs installing  
  • AuthKit/trunk/authkit/authenticate/cookie.py

    r140 r143  
    444444            environ[self.session_middleware].save() 
    445445        domain = self.cookie_params.get('domain') 
    446         path = '/' 
     446        path = self.cookie_params.get('path', '/') 
    447447        if not domain: 
    448448            cookies = [('Set-Cookie', '%s=""; Path=%s' % (self.cookie_name,