--- /tmp/lib/python/Products/LocalFS/LocalFS.py Tue Mar 13 08:12:44 2001 +++ LocalFS.py Thu Sep 13 15:00:46 2001 @@ -675,7 +675,7 @@ except: pass try: user=REQUEST['AUTHENTICATED_USER'] except: user = None - if user is None or not user.has_permission('Overwrite files', self): + if user is None or not user.has_permission('Overwrite local files', self): raise 'Unauthorized', HTTPResponse()._error_html( 'Unauthorized', "Sorry, you are not authorized to overwrite files.
")