Commit 50b796c6 authored by Christophe Dumez's avatar Christophe Dumez

- fixed os.sep instead of '/' (reported by jerome)


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@6765 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 579c45ff
......@@ -499,7 +499,7 @@ class SubversionTool(UniqueObject, Folder):
value = ','.join(login_list)
expires = (DateTime() + 7).toZone('GMT').rfc822()
request.set(self.login_cookie_name, value)
response.setCookie(self.login_cookie_name, value, path = os.sep, expires = expires)
response.setCookie(self.login_cookie_name, value, path = '/', expires = expires)
def _getLogin(self, target_realm):
request = self.REQUEST
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment