Changes of Revision 4
[-] [+] | Added | trac-auth.patch |
@@ -0,0 +1,12 @@ +--- ./trac/web/auth.py.auth 2007-12-01 22:56:36.000000000 +0100 ++++ ./trac/web/auth.py 2007-12-01 22:56:47.000000000 +0100 +@@ -142,6 +142,9 @@ + + req.authname = remote_user + req.outcookie['trac_auth'] = cookie ++ auth_domain = self.env.config.get('trac_auth', 'domain') ++ if len(auth_domain) > 0: ++ req.outcookie['trac_auth']['domain'] = auth_domain + req.outcookie['trac_auth']['path'] = req.href() + + def _do_logout(self, req): |