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

Tres Seaver tseaver at zope.com
Thu May 6 15:41:06 EDT 2004


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

Modified Files:
	CookieAuthHelper.py 
Log Message:
 -Fix isomorph of Zope bug #1226.


=== Products/PluggableAuthService/plugins/CookieAuthHelper.py 1.3 => 1.4 ===
--- Products/PluggableAuthService/plugins/CookieAuthHelper.py:1.3	Thu May  6 12:28:57 2004
+++ Products/PluggableAuthService/plugins/CookieAuthHelper.py	Thu May  6 15:41:03 2004
@@ -120,6 +120,7 @@
                 request.set('__ac_password', '')
 
                 cookie_val = encodestring('%s:%s' % (login, password))
+                cookie_val = cookie_val.replace( '\n', '' )
                 response = request['RESPONSE']
                 response.setCookie(self.cookie_name, cookie_val, path='/')
 




More information about the Zope-CVS mailing list