[Zope-Checkins] CVS: Zope2 - BaseRequest.py:1.39
shane@digicool.com
shane@digicool.com
Wed, 16 May 2001 11:19:21 -0400 (EDT)
Update of /cvs-repository/Zope2/lib/python/ZPublisher
In directory korak.digicool.com:/tmp/cvs-serv3972
Modified Files:
BaseRequest.py
Log Message:
Removed the special case that prevents authentication from being attempted.
--- Updated File BaseRequest.py in package Zope2 --
--- BaseRequest.py 2001/05/11 18:17:33 1.38
+++ BaseRequest.py 2001/05/16 15:19:20 1.39
@@ -404,7 +404,7 @@
user=groups=None
i=0
- if roles is not None:
+ if 1: # Always perform authentication.
last_parent_index=len(parents)
if hasattr(object, '__allow_groups__'):