[Zope-CVS] CVS: Products/PluggableAuthService/plugins - CookieAuthHelper.py:1.9

Chris McDonough chrism at plope.com
Tue Nov 16 13:17:24 EST 2004


Update of /cvs-repository/Products/PluggableAuthService/plugins
In directory cvs.zope.org:/tmp/cvs-serv2847/plugins

Modified Files:
	CookieAuthHelper.py 
Log Message:
Don't clear out __ac_name and __ac_password from the request during extractUserCredentials.  This caused an inappropriate subsequent challenge after the first response to a challenge when visiting a protected resource.


=== Products/PluggableAuthService/plugins/CookieAuthHelper.py 1.8 => 1.9 ===
--- Products/PluggableAuthService/plugins/CookieAuthHelper.py:1.8	Sat Oct 16 16:15:47 2004
+++ Products/PluggableAuthService/plugins/CookieAuthHelper.py	Tue Nov 16 13:17:23 2004
@@ -117,9 +117,6 @@
                 creds['login'] = login
                 creds['password'] = password
 
-                request.set('__ac_name', '')
-                request.set('__ac_password', '')
-
         if creds:
             creds['remote_host'] = request.get('REMOTE_HOST', '')
 



More information about the Zope-CVS mailing list