[Zope-CVS] CVS: Products/PluggableAuthService/plugins -
HTTPBasicAuthHelper.py:1.6.2.3
Zachery Bir
zbir at urbanape.com
Thu Oct 14 07:23:13 EDT 2004
Update of /cvs-repository/Products/PluggableAuthService/plugins
In directory cvs.zope.org:/tmp/cvs-serv3876
Modified Files:
Tag: pre-1_0_3-zbir-challenge-branch
HTTPBasicAuthHelper.py
Log Message:
Match the signature of HTTPResponse.addHeader()
=== Products/PluggableAuthService/plugins/HTTPBasicAuthHelper.py 1.6.2.2 => 1.6.2.3 ===
--- Products/PluggableAuthService/plugins/HTTPBasicAuthHelper.py:1.6.2.2 Wed Oct 13 21:47:52 2004
+++ Products/PluggableAuthService/plugins/HTTPBasicAuthHelper.py Thu Oct 14 07:23:12 2004
@@ -97,7 +97,7 @@
realm = response.realm
if realm:
response.addHeader('WWW-Authenticate',
- 'basic realm="%s"' % realm, 1)
+ 'basic realm="%s"' % realm)
m = "<strong>You are not authorized to access this resource.</strong>"
if response.debug_mode:
if response._auth:
More information about the Zope-CVS
mailing list