Changeset 149
- Timestamp:
- 03/14/08 14:21:49
- Files:
-
- AuthKit/trunk/authkit/authenticate/cookie.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
AuthKit/trunk/authkit/authenticate/cookie.py
r145 r149 370 370 environ['paste.auth_tkt.timestamp'] = timestamp 371 371 # End changes from the default 372 373 tokens = ','.join(tokens)374 372 environ['REMOTE_USER'] = userid 375 373 if environ.get('REMOTE_USER_TOKENS'): … … 402 400 403 401 def set_user_cookie(self, environ, userid, tokens, user_data): 404 if not isinstance(tokens, basestring):405 tokens = ','.join(tokens)406 402 if self.include_ip: 407 403 # Fixes ticket #30
